Home | History | Annotate | Download | only in telephony

Lines Matching refs:pdu

73 extern int      smspdu_to_hex( SmsPDU  pdu, char*  hex, int  hexsize );
75 /* free a given SMS PDU */
76 extern void smspdu_free( SmsPDU pdu );
85 extern SmsPduType smspdu_get_type( SmsPDU pdu );
87 /* retrieve the sender address of a SMS-DELIVER pdu, returns -1 otherwise */
88 extern int smspdu_get_sender_address( SmsPDU pdu, SmsAddress address );
90 /* retrieve the service center timestamp of a SMS-DELIVER pdu, return -1 otherwise */
91 extern int smspdu_get_sc_timestamp( SmsPDU pdu, SmsTimeStamp timestamp );
93 /* retrieve the receiver address of a SMS-SUBMIT pdu, return -1 otherwise */
94 extern int smspdu_get_receiver_address( SmsPDU pdu, SmsAddress address );
96 extern int smspdu_get_ref ( SmsPDU pdu );
97 extern int smspdu_get_max_index( SmsPDU pdu );
98 extern int smspdu_get_cur_index( SmsPDU pdu );
100 /* get the message embedded in a SMS PDU as a utf8 byte array, returns the length of the message in bytes */
102 extern int smspdu_get_text_message( SmsPDU pdu, unsigned char* utf8, int utf8len );