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

Contents of /smsdaemon/SmsPdu.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 68 - (show annotations) (download)
Thu Jun 12 18:54:24 2008 UTC (15 years, 11 months ago) by torben
File MIME type: text/plain
File size: 488 byte(s)
Added pdu decode helper functions.

1
2
3 #include <string>
4 #include <vector>
5
6 struct PduInfo
7 {
8 std::string pdu;
9 int len;
10 };
11
12 namespace SmsPdu
13 {
14
15 std::string EncodePhonenr(std::string input);
16 std::string DecodePhonenr(std::string input);
17
18 std::string HexformatVector(std::vector<unsigned char> vec);
19
20 std::vector<unsigned char> Encode7to8bit(std::string str);
21 std::string Decode8to7bit( std::vector<unsigned char> input );
22
23 std::vector<PduInfo> CreateSmsPdu(std::string to, std::string message, bool allowMultipart);
24
25 }

  ViewVC Help
Powered by ViewVC 1.1.20