2012-02-02 02:41:39 +01:00
|
|
|
/*
|
|
|
|
* tcp_hc.h
|
|
|
|
*
|
|
|
|
* Created on: 01.02.2012
|
|
|
|
* Author: Oliver
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TCP_HC_H_
|
|
|
|
#define TCP_HC_H_
|
|
|
|
|
2012-02-14 01:56:49 +01:00
|
|
|
#define TCP_HC
|
2012-02-02 02:41:39 +01:00
|
|
|
|
|
|
|
#include "tcp.h"
|
|
|
|
#include "sys/net/sixlowpan/sixlowip.h"
|
|
|
|
#include "socket.h"
|
|
|
|
|
|
|
|
#ifdef TCP_HC
|
2012-02-07 04:24:00 +01:00
|
|
|
|
|
|
|
#define FULL_HEADER 1
|
|
|
|
#define MOSTLY_COMPRESSED_HEADER 2
|
|
|
|
#define COMPRESSED_HEADER 3
|
|
|
|
|
2012-02-05 00:33:55 +01:00
|
|
|
void update_tcp_hc_context(bool incoming, socket_internal_t *current_socket, tcp_hdr_t *current_tcp_packet);
|
|
|
|
uint16_t compress_tcp_packet(socket_internal_t *current_socket, uint8_t *current_tcp_packet, ipv6_hdr_t *temp_ipv6_header, uint8_t flags, uint8_t payload_length);
|
2012-02-03 03:11:30 +01:00
|
|
|
socket_internal_t *decompress_tcp_packet(ipv6_hdr_t *temp_ipv6_header);
|
2012-02-02 02:41:39 +01:00
|
|
|
#endif
|
|
|
|
#endif /* TCP_HC_H_ */
|