ROHC compression/decompression library
Functions
c_tcp_dynamic.c File Reference

Handle the dynamic chain of the TCP compression profile. More...

#include "c_tcp_dynamic.h"
#include "c_tcp_defines.h"
#include "schemes/rfc4996.h"
#include "protocols/ip_numbers.h"
#include "protocols/ip.h"
#include <assert.h>
Include dependency graph for c_tcp_dynamic.c:

Functions

static int tcp_code_dynamic_ipv4_part (const struct rohc_comp_ctxt *const context, ip_context_t *const ip_context, const struct ipv4_hdr *const ipv4, const rohc_ip_id_behavior_t ip_id_behavior, uint8_t *const rohc_data, const size_t rohc_max_len)
 Build the dynamic part of the IPv4 header. More...
 
static int tcp_code_dynamic_ipv6_part (const struct rohc_comp_ctxt *const context, ip_context_t *const ip_context, const struct ipv6_hdr *const ipv6, uint8_t *const rohc_data, const size_t rohc_max_len)
 Build the dynamic part of the IPv6 header. More...
 
static int tcp_code_dynamic_ipv6_opt_part (const struct rohc_comp_ctxt *const context, const struct rohc_pkt_ip_ext_hdr *const ext, uint8_t *const rohc_data, const size_t rohc_max_len)
 Build the dynamic part of the IPv6 option header. More...
 
static int tcp_code_dynamic_tcp_part (const struct rohc_comp_ctxt *const context, const struct rohc_pkt_hdrs *const uncomp_pkt_hdrs, struct tcp_tmp_variables *const tmp, uint8_t *const rohc_data, const size_t rohc_max_len)
 Build the dynamic part of the TCP header. More...
 
int tcp_code_dyn_part (struct rohc_comp_ctxt *const context, const struct rohc_pkt_hdrs *const uncomp_pkt_hdrs, struct tcp_tmp_variables *const tmp, uint8_t *const rohc_pkt, const size_t rohc_pkt_max_len)
 Code the dynamic part of an IR or IR-DYN packet. More...
 

Detailed Description

Handle the dynamic chain of the TCP compression profile.

Author
FWX rohc_.nosp@m.team.nosp@m.@dial.nosp@m.ine..nosp@m.fr
Didier Barvaux didie.nosp@m.r@ba.nosp@m.rvaux.nosp@m..org
Didier Barvaux didie.nosp@m.r.ba.nosp@m.rvaux.nosp@m.@tou.nosp@m.louse.nosp@m..viv.nosp@m.eris..nosp@m.com

Function Documentation

◆ tcp_code_dyn_part()

int tcp_code_dyn_part ( struct rohc_comp_ctxt *const  context,
const struct rohc_pkt_hdrs *const  uncomp_pkt_hdrs,
struct tcp_tmp_variables *const  tmp,
uint8_t *const  rohc_pkt,
const size_t  rohc_pkt_max_len 
)

Code the dynamic part of an IR or IR-DYN packet.

Parameters
contextThe compression context
uncomp_pkt_hdrsThe uncompressed headers to encode
tmpThe temporary state for compressed packet
rohc_pktOUT: The ROHC packet
rohc_pkt_max_lenThe maximum length of the ROHC packet
Returns
The length of the ROHC packet if successful, -1 otherwise

◆ tcp_code_dynamic_ipv4_part()

static int tcp_code_dynamic_ipv4_part ( const struct rohc_comp_ctxt *const  context,
ip_context_t *const  ip_context,
const struct ipv4_hdr *const  ipv4,
const rohc_ip_id_behavior_t  ip_id_behavior,
uint8_t *const  rohc_data,
const size_t  rohc_max_len 
)
static

Build the dynamic part of the IPv4 header.

Parameters
contextThe compression context
ip_contextThe specific IP compression context
ipv4The IPv4 header
ip_id_behaviorThe IP-ID behavior of the IPv4 header
[out]rohc_dataThe ROHC packet being built
rohc_max_lenThe max remaining length in the ROHC buffer
Returns
The length appended in the ROHC buffer if positive, -1 in case of error

◆ tcp_code_dynamic_ipv6_opt_part()

static int tcp_code_dynamic_ipv6_opt_part ( const struct rohc_comp_ctxt *const  context,
const struct rohc_pkt_ip_ext_hdr *const  ext,
uint8_t *const  rohc_data,
const size_t  rohc_max_len 
)
static

Build the dynamic part of the IPv6 option header.

Parameters
contextThe compression context
extThe IPv6 extension header
[out]rohc_dataThe ROHC packet being built
rohc_max_lenThe max remaining length in the ROHC buffer
Returns
The length appended in the ROHC buffer if positive, -1 in case of error

◆ tcp_code_dynamic_ipv6_part()

static int tcp_code_dynamic_ipv6_part ( const struct rohc_comp_ctxt *const  context,
ip_context_t *const  ip_context,
const struct ipv6_hdr *const  ipv6,
uint8_t *const  rohc_data,
const size_t  rohc_max_len 
)
static

Build the dynamic part of the IPv6 header.

Parameters
contextThe compression context
ip_contextThe specific IP compression context
ipv6The IPv6 header
[out]rohc_dataThe ROHC packet being built
rohc_max_lenThe max remaining length in the ROHC buffer
Returns
The length appended in the ROHC buffer if positive, -1 in case of error

◆ tcp_code_dynamic_tcp_part()

static int tcp_code_dynamic_tcp_part ( const struct rohc_comp_ctxt *const  context,
const struct rohc_pkt_hdrs *const  uncomp_pkt_hdrs,
struct tcp_tmp_variables *const  tmp,
uint8_t *const  rohc_data,
const size_t  rohc_max_len 
)
static

Build the dynamic part of the TCP header.

 Dynamic part of TCP header:

TODO
Parameters
contextThe compression context
uncomp_pkt_hdrsThe uncompressed headers to encode
tmpThe temporary state for compressed packet
[out]rohc_dataThe ROHC packet being built
rohc_max_lenThe max remaining length in the ROHC buffer
Returns
The length appended in the ROHC buffer if positive, -1 in case of error