> SMPP: Unknown TLV(0x1402,0x0004,22312200) for PDU type (deliver_sm) > received! > > Great! There it is, just waiting for me. The question is, on an > sms-service get-url, how do I pass this information to my PHP script?
You'll need to write code to; 1. Capture the TLV value in the SMPP driver and hold it somewhere in the Msg struct by either overloading an existing field or adding a new field. 2. Expose the same value in the Msg struct to the send SMS service code in the SMS Box (smsbox.c) so that the value is passed in the HTTP session as a CGI param, POST body, XML element, your choice.
