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

Diff of /smsdaemon/SmsPdu.cpp

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

revision 60 by torben, Wed Jun 11 21:18:04 2008 UTC revision 65 by torben, Thu Jun 12 13:32:17 2008 UTC
# Line 10  Line 10 
10  #include <time.h>  #include <time.h>
11  #include <stdlib.h>  #include <stdlib.h>
12    
13    #include "common.h"
14  #include "util.h"  #include "util.h"
15    
16    
# Line 43  vector<unsigned char> BcdEncode(string i Line 43  vector<unsigned char> BcdEncode(string i
43                  }                  }
44          }          }
45    
46            if ((input.length() % 2) == 1)
47            {
48                    current |= 0xF0;
49                    result.push_back(current);
50            }
51    
52          return result;          return result;
53  }  }
54    
# Line 61  string HexformatVector(vector<unsigned c Line 67  string HexformatVector(vector<unsigned c
67          return os.str();          return os.str();
68  }  }
69    
70    std::string Encode8to7bit(vector<unsigned char> vec)
71    {
72            string result;
73    
74            return result;
75    }
76    
77  vector<unsigned char> Encode7to8bit(std::string str)  vector<unsigned char> Encode7to8bit(std::string str)
78  {  {
79          vector<unsigned char> buf;          vector<unsigned char> buf;
# Line 92  vector<PduInfo> CreateSmsPdu(string to, Line 105  vector<PduInfo> CreateSmsPdu(string to,
105  {  {
106          bool multipart = allowMultipart && message.length() > 160;          bool multipart = allowMultipart && message.length() > 160;
107    
108          const unsigned char UHDI = multipart ? 0x40 : 0;          const unsigned char UDHI = multipart ? 0x40 : 0;
109    
110          srand(time(0));          srand(time(0));
111          unsigned char csms_ref = rand() % 256;          unsigned char csms_ref = rand() % 128;
112    
113          int part_count;          int part_count;
114    
115            const int PDU_LEN = 153;
116    
117          if (multipart)          if (multipart)
118          {          {
119                  part_count = message.length() / 153;                  if (message.length() > 800)
120                  if (message.length() % 153)                  {
121                            Common::instance()->logMessage("Trying to send multipart sms > 800 bytes !!!");
122                            message = message.substr(0,800);
123                    }
124    
125                    part_count = message.length() / PDU_LEN;
126                    if (message.length() % PDU_LEN)
127                          part_count++;                          part_count++;
128          }          }
129          else          else
# Line 115  vector<PduInfo> CreateSmsPdu(string to, Line 137  vector<PduInfo> CreateSmsPdu(string to,
137                  vector<unsigned char> pdu;                  vector<unsigned char> pdu;
138    
139                  pdu.push_back(0x00); // use SMSC from phone                  pdu.push_back(0x00); // use SMSC from phone
140                  pdu.push_back( 0x01|UHDI ); // 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(0x91); // type of address (international nr  + ISDN/telephone range) - else try 0x81
# Line 124  vector<PduInfo> CreateSmsPdu(string to, Line 146  vector<PduInfo> CreateSmsPdu(string to,
146                  pdu.insert( pdu.end(), phone.begin(), phone.end());                  pdu.insert( pdu.end(), phone.begin(), phone.end());
147    
148                  pdu.push_back(0x00); // Protocol identifier                  pdu.push_back(0x00); // Protocol identifier
149                  pdu.push_back(0x00); // Data coding scheme                  pdu.push_back(0x00); // Data coding scheme
150    
151                  string message_part;                  string message_part;
152                  if (multipart)                  if (multipart)
153                  {                  {
154                          message_part = message.substr(0,153);                          message_part = message.substr(0, PDU_LEN);
155                          message.erase(0,153);                          message.erase(0, PDU_LEN);
156    
157                          pdu.push_back( message_part.length()+5 );  //UserDataLength                          pdu.push_back( message_part.length()+ 7 );  //UserDataLength
158                          pdu.push_back( 0x00 ); // UDH[0]                          pdu.push_back( 0x06 ); // UDH Len
159                          pdu.push_back( 0x03 ); // UDH[1] = UDH_LEN                          pdu.push_back( 0x00 ); // UDH Element Identifier
160                          pdu.push_back( csms_ref ); //UDH[2]                          pdu.push_back( 0x03 ); // UDH element length
161                            pdu.push_back( csms_ref ); // csms_ref reference
162                          pdu.push_back( part_count );                          pdu.push_back( part_count );
163                          pdu.push_back( partnr );                          pdu.push_back( partnr+1 );
164                            pdu.push_back( 0x00);
165    
166                  }                  }
167                  else                  else
168                  {                  {
169                          message_part = message.substr(0,160); //truncate to 160                          if (message.length() > 160)
170                            {
171                                    message_part = message.substr(0,160); //truncate to 160
172                                    Common::instance()->logMessage("Truncated message");
173                            }
174                            else
175                            {
176                                    message_part = message;
177                            }
178    
179                          pdu.push_back( message_part.length() ); //UserDataLength                          pdu.push_back( message_part.length() ); //UserDataLength
180                  }                  }

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

  ViewVC Help
Powered by ViewVC 1.1.20