mikroSDK Reference Manual
tcp_timer.h
Go to the documentation of this file.
1
31#ifndef _TCP_TIMER_H
32#define _TCP_TIMER_H
33
34//C++ guard
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39//TCP timer related functions
40void tcpTick(void);
41
42void tcpCheckRetransmitTimer(Socket *socket);
43void tcpCheckPersistTimer(Socket *socket);
44void tcpCheckKeepAliveTimer(Socket *socket);
45void tcpCheckOverrideTimer(Socket *socket);
46void tcpCheckFinWait2Timer(Socket *socket);
47void tcpCheckTimeWaitTimer(Socket *socket);
48
49//C++ guard
50#ifdef __cplusplus
51}
52#endif
53
54#endif