1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/net/destiny/tcp_hc.h
Oliver 9ca8afd70c [ sys net sixlowpan ]
- fixed a bug in 6LoWPAN reassembly algorithm where in a specific case a
pointer could be used although it is NULL
- removed MAC routing
- added IP routing
2012-02-20 04:25:52 +01:00

26 lines
694 B
C

/*
* tcp_hc.h
*
* Created on: 01.02.2012
* Author: Oliver
*/
#ifndef TCP_HC_H_
#define TCP_HC_H_
#include "tcp.h"
#include "sys/net/sixlowpan/sixlowip.h"
#include "socket.h"
#ifdef TCP_HC
#define FULL_HEADER 1
#define MOSTLY_COMPRESSED_HEADER 2
#define COMPRESSED_HEADER 3
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);
socket_internal_t *decompress_tcp_packet(ipv6_hdr_t *temp_ipv6_header);
#endif
#endif /* TCP_HC_H_ */