diff options
Diffstat (limited to 'src/pdu_decode.h')
-rw-r--r-- | src/pdu_decode.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pdu_decode.h b/src/pdu_decode.h index 004c8ad..c39f232 100644 --- a/src/pdu_decode.h +++ b/src/pdu_decode.h @@ -4,9 +4,11 @@ #include "pdu.h" int pdu_decode_timestamp(const char *pdu_str, struct tm *tm); +int pdu_decode_cdma_timestamp(const char *pdu_str, struct tm *tm); int pdu_decode_addr(const char *pdu_str, struct pdu_addr *addr, int smsc); -int pdu_decode_user_data(const char *pdu_str, struct pdu_info *pdu); +int pdu_decode_user_data(const char *pdu_str, struct pdu_info *pdu, int *nr_octets); int pdu_decode(const char *pdu_str, struct pdu_info *pdu); +int pdu_decode_cdma(const char *pdu_str, struct pdu_info *pdu); #endif /* ~__PDU_DECODE_H */ |