/[projects]/smsdaemon/SmsPdu.cpp
ViewVC logotype

Diff of /smsdaemon/SmsPdu.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 65 by torben, Thu Jun 12 13:32:17 2008 UTC revision 66 by torben, Thu Jun 12 15:16:12 2008 UTC
# Line 140  vector<PduInfo> CreateSmsPdu(string to, Line 140  vector<PduInfo> CreateSmsPdu(string to,
140                  pdu.push_back( 0x01|UDHI ); // first octet -- no timeout                  pdu.push_back( 0x01|UDHI ); // first octet -- no timeout
141                  pdu.push_back(0x00); // TP-MR message reference                  pdu.push_back(0x00); // TP-MR message reference
142                  pdu.push_back(to.length() ); //length of phone nr                  pdu.push_back(to.length() ); //length of phone nr
143                  pdu.push_back(0x91); // type of address (international nr  + ISDN/telephone range) - else try 0x81                  pdu.push_back(0x81); // type of address (international nr  + ISDN/telephone range) - else try 0x81
144    
145                  vector<unsigned char> phone = BcdEncode(to);                  vector<unsigned char> phone = BcdEncode(to);
146                  pdu.insert( pdu.end(), phone.begin(), phone.end());                  pdu.insert( pdu.end(), phone.begin(), phone.end());

Legend:
Removed from v.65  
changed lines
  Added in v.66

  ViewVC Help
Powered by ViewVC 1.1.20