27 #ifndef ROHC_DECOMP_DETECT_PACKET_H
28 #define ROHC_DECOMP_DETECT_PACKET_H
33 # include <linux/types.h>
45 __attribute__((warn_unused_result, nonnull(1), pure));
47 __attribute__((warn_unused_result, nonnull(1), pure));
51 __attribute__((warn_unused_result, nonnull(1), pure));
55 __attribute__((warn_unused_result, nonnull(1), pure));
59 __attribute__((warn_unused_result, nonnull(1), pure));
63 __attribute__((warn_unused_result, nonnull(1), pure));
65 __attribute__((warn_unused_result, nonnull(1), pure));
69 __attribute__((warn_unused_result, nonnull(1), pure));
71 const size_t data_len,
72 const size_t large_cid_len)
73 __attribute__((warn_unused_result, nonnull(1), pure));
bool rohc_decomp_packet_is_uor2(const uint8_t *const data, const size_t len)
Find out whether a ROHC packet is an UOR-2* packet or not.
Definition: rohc_decomp_detect_packet.c:142
bool rohc_decomp_packet_is_uor2_ts(const uint8_t *const data, const size_t data_len, const size_t large_cid_len)
Find out whether a ROHC packet is an UOR-2-TS packet or not.
Definition: rohc_decomp_detect_packet.c:158
bool rohc_decomp_packet_is_uo1_ts(const uint8_t *const data, const size_t len)
Find out whether a ROHC packet is an UO-1-TS packet or not.
Definition: rohc_decomp_detect_packet.c:129
bool rohc_decomp_packet_is_padding(const uint8_t *const data)
Find out whether the field is a padding field or not.
Definition: rohc_decomp_detect_packet.c:62
bool rohc_decomp_packet_is_irdyn(const uint8_t *const data, const size_t len)
Find out whether a ROHC packet is an IR-DYN packet or not.
Definition: rohc_decomp_detect_packet.c:88
bool rohc_decomp_packet_is_ir(const uint8_t *const data, const size_t len)
Find out whether a ROHC packet is an IR packet or not.
Definition: rohc_decomp_detect_packet.c:75
bool rohc_decomp_packet_is_uo0(const uint8_t *const data, const size_t len)
Find out whether a ROHC packet is an UO-0 packet or not.
Definition: rohc_decomp_detect_packet.c:101
bool rohc_decomp_packet_is_uo1(const uint8_t *const data, const size_t len)
Find out whether a ROHC packet is an UO-1* packet or not.
Definition: rohc_decomp_detect_packet.c:114
bool rohc_decomp_packet_is_segment(const uint8_t *const data)
Find out whether the field is a segment field or not.
Definition: rohc_decomp_detect_packet.c:50