1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/sys/net/destiny/tcp_timer.h
Oliver 7f48b8d6ae [projects tlayer]
- added bidirectional TCP usage

[sys net destiny]
- added payload retransmit handling
2012-01-27 02:54:59 +01:00

29 lines
614 B
C

/*
* tcp_timer.h
*
* Created on: 21.01.2012
* Author: Oliver
*/
#ifndef TCP_TIMER_H_
#define TCP_TIMER_H_
#define SECONDS 1000*1000
#define TCP_TIMER_STACKSIZE 2048
#define TCP_SYN_INITIAL_TIMEOUT 6*SECONDS
#define TCP_SYN_TIMEOUT 24*SECONDS
#define TCP_MAX_SYN_RETRIES 3
#define TCP_ACK_TIMEOUT 1.5*SECONDS
#define TCP_ACK_MAX_TIMEOUT 90*SECONDS
#define TCP_NOT_DEFINED 0
#define TCP_RETRY 1
#define TCP_TIMEOUT 2
#define TCP_CONTINUE 3
void tcp_general_timer(void);
char tcp_timer_stack[TCP_TIMER_STACKSIZE];
#endif /* TCP_TIMER_H_ */