Transmission Control Protocol (TCP) Service
[Transport layer]

Collaboration diagram for Transmission Control Protocol (TCP) Service:

Data Structures

struct  tcp_timeout
 TCP reply timeout data. More...
struct  tcp_operation
 TCP operation data. More...
struct  tcp_socket_data
 TCP socket specific data. More...
struct  tcp_globals
 TCP global data. More...
struct  tcp_header
 Transmission datagram header. More...
struct  tcp_option
 Transmission datagram header option. More...
struct  tcp_max_segment_size_option
 Maximum segment size TCP option. More...

Files

file  tcp_codes.h
 

TCP options definitions.


file  tcp.c
 

TCP module implementation.


file  tcp.h
 

TCP module.


file  tcp_header.h
 

TCP header definition.


file  tcp_module.c
 

TCP standalone module implementation.


file  tcp_module.h
 

TCP module functions.


Defines

#define TCPOPT_END_OF_LIST   0x0
 End of list TCP option.
#define TCPOPT_NO_OPERATION   0x1
 No operation TCP option.
#define TCPOPT_MAX_SEGMENT_SIZE   0x2
 Maximum segment size TCP option.
#define TCPOPT_MAX_SEGMENT_SIZE_LENGTH   4
 Maximum segment size TCP option length.
#define TCPOPT_WINDOW_SCALE   0x3
 Window scale TCP option.
#define TCPOPT_WINDOW_SCALE_LENGTH   3
 Window scale TCP option length.
#define TCPOPT_SACK_PERMITTED   0x4
 Selective acknowledgement permitted TCP option.
#define TCPOPT_SACK_PERMITTED_LENGTH   2
 Selective acknowledgement permitted TCP option length.
#define TCPOPT_SACK   0x5
 Selective acknowledgement TCP option.
#define TCPOPT_TIMESTAMP   0x8
 Timestamp TCP option.
#define TCPOPT_TIMESTAMP_LENGTH   10
 Timestamp TCP option length.
#define NET_DEFAULT_TCP_WINDOW   10240
 The TCP window default value.
#define NET_DEFAULT_TCP_INITIAL_TIMEOUT   3000000L
 Initial timeout for new connections.
#define NET_DEFAULT_TCP_TIME_WAIT_TIMEOUT   2000L
 Default timeout for closing.
#define TCP_INITIAL_SEQUENCE_NUMBER   2999
 The initial outgoing sequence number.
#define MAX_TCP_FRAGMENT_SIZE   65535
 Maximum TCP fragment size.
#define TCP_FREE_PORTS_START   1025
 Free ports pool start.
#define TCP_FREE_PORTS_END   65535
 Free ports pool end.
#define TCP_SYN_SENT_TIMEOUT   1000000L
 Timeout for connection initialization, SYN sent.
#define TCP_MAX_TIMEOUTS   8
 The maximum number of timeouts in a row before singaling connection lost.
#define TCP_FAST_RETRANSMIT_COUNT   3
 The number of acknowledgements before retransmit.
#define IS_IN_INTERVAL_OVERFLOW(lower, value, higher_equal)   ((((lower) < (value)) && (((value) <= (higher_equal)) || ((higher_equal) < (lower)))) || (((value) <= (higher_equal)) && ((higher_equal) < (lower))))
 Returns a value indicating whether the value is in the interval respecting the possible overflow.
#define TCP_HEADER_SIZE   sizeof(tcp_header_t)
 TCP header size in bytes.
#define TCP_HEADER_LENGTH(header)   ((header)->header_length * 4u)
 Returns the actual TCP header length in bytes.
#define TCP_COMPUTE_HEADER_LENGTH(length)   ((uint8_t) ((length) / 4u))
 Returns the TCP header length.
#define NAME   "TCP protocol"
 TCP module name.

Typedefs

typedef struct tcp_timeout tcp_timeout_t
 Type definition of the TCP timeout.
typedef tcp_timeout_ttcp_timeout_ref
 Type definition of the TCP timeout pointer.
typedef struct tcp_globals tcp_globals_t
 Type definition of the TCP global data.
typedef struct tcp_socket_data tcp_socket_data_t
 Type definition of the TCP socket specific data.
typedef tcp_socket_data_ttcp_socket_data_ref
 Type definition of the TCP socket specific data pointer.
typedef struct tcp_operation tcp_operation_t
 Type definition of the TCP operation data.
typedef tcp_operation_ttcp_operation_ref
 Type definition of the TCP operation data pointer.
typedef enum tcp_socket_state tcp_socket_state_t
 TCP socket state type definition.
typedef struct tcp_header tcp_header_t
 Type definition of the transmission datagram header.
typedef tcp_header_ttcp_header_ref
 Type definition of the transmission datagram header pointer.
typedef struct tcp_option tcp_option_t
 Type definition of the transmission datagram header option.
typedef tcp_option_ttcp_option_ref
 Type definition of the transmission datagram header option pointer.
typedef struct
tcp_max_segment_size_option 
tcp_max_segment_size_option_t
 Type definition of the Maximum segment size TCP option.
typedef
tcp_max_segment_size_option_t
tcp_max_segment_size_option_ref
 Type definition of the Maximum segment size TCP option pointer.

Enumerations

enum  tcp_socket_state {
  TCP_SOCKET_INITIAL, TCP_SOCKET_LISTEN, TCP_SOCKET_SYN_SENT, TCP_SOCKET_SYN_RECEIVED,
  TCP_SOCKET_ESTABLISHED, TCP_SOCKET_FIN_WAIT_1, TCP_SOCKET_FIN_WAIT_2, TCP_SOCKET_CLOSING,
  TCP_SOCKET_CLOSE_WAIT, TCP_SOCKET_LAST_ACK, TCP_SOCKET_TIME_WAIT, TCP_SOCKET_CLOSED
}
 

TCP socket state.

More...

Functions

int tcp_release_and_return (packet_t packet, int result)
 Releases the packet and returns the result.
void tcp_prepare_operation_header (socket_core_ref socket, tcp_socket_data_ref socket_data, tcp_header_ref header, int synchronize, int finalize)
int tcp_prepare_timeout (int(*timeout_function)(void *tcp_timeout_t), socket_core_ref socket, tcp_socket_data_ref socket_data, size_t sequence_number, tcp_socket_state_t state, suseconds_t timeout, int globals_read_only)
void tcp_free_socket_data (socket_core_ref socket)
int tcp_timeout (void *data)
int tcp_release_after_timeout (void *data)
int tcp_process_packet (device_id_t device_id, packet_t packet, services_t error)
int tcp_connect_core (socket_core_ref socket, socket_cores_ref local_sockets, struct sockaddr *addr, socklen_t addrlen)
int tcp_queue_prepare_packet (socket_core_ref socket, tcp_socket_data_ref socket_data, packet_t packet, size_t data_length)
int tcp_queue_packet (socket_core_ref socket, tcp_socket_data_ref socket_data, packet_t packet, size_t data_length)
packet_t tcp_get_packets_to_send (socket_core_ref socket, tcp_socket_data_ref socket_data)
void tcp_send_packets (device_id_t device_id, packet_t packet)
void tcp_process_acknowledgement (socket_core_ref socket, tcp_socket_data_ref socket_data, tcp_header_ref header)
packet_t tcp_send_prepare_packet (socket_core_ref socket, tcp_socket_data_ref socket_data, packet_t packet, size_t data_length, size_t sequence_number)
packet_t tcp_prepare_copy (socket_core_ref socket, tcp_socket_data_ref socket_data, packet_t packet, size_t data_length, size_t sequence_number)
void tcp_retransmit_packet (socket_core_ref socket, tcp_socket_data_ref socket_data, size_t sequence_number)
int tcp_create_notification_packet (packet_t *packet, socket_core_ref socket, tcp_socket_data_ref socket_data, int synchronize, int finalize)
void tcp_refresh_socket_data (tcp_socket_data_ref socket_data)
void tcp_initialize_socket_data (tcp_socket_data_ref socket_data)
int tcp_process_listen (socket_core_ref listening_socket, tcp_socket_data_ref listening_socket_data, tcp_header_ref header, packet_t packet, struct sockaddr *src, struct sockaddr *dest, size_t addrlen)
int tcp_process_syn_sent (socket_core_ref socket, tcp_socket_data_ref socket_data, tcp_header_ref header, packet_t packet)
int tcp_process_syn_received (socket_core_ref socket, tcp_socket_data_ref socket_data, tcp_header_ref header, packet_t packet)
int tcp_process_established (socket_core_ref socket, tcp_socket_data_ref socket_data, tcp_header_ref header, packet_t packet, int fragments, size_t total_length)
int tcp_queue_received_packet (socket_core_ref socket, tcp_socket_data_ref socket_data, packet_t packet, int fragments, size_t total_length)
int tcp_received_msg (device_id_t device_id, packet_t packet, services_t receiver, services_t error)
int tcp_process_client_messages (ipc_callid_t callid, ipc_call_t call)
int tcp_listen_message (socket_cores_ref local_sockets, int socket_id, int backlog)
int tcp_connect_message (socket_cores_ref local_sockets, int socket_id, struct sockaddr *addr, socklen_t addrlen)
int tcp_recvfrom_message (socket_cores_ref local_sockets, int socket_id, int flags, size_t *addrlen)
int tcp_send_message (socket_cores_ref local_sockets, int socket_id, int fragments, size_t *data_fragment_size, int flags)
int tcp_accept_message (socket_cores_ref local_sockets, int socket_id, int new_socket_id, size_t *data_fragment_size, size_t *addrlen)
int tcp_close_message (socket_cores_ref local_sockets, int socket_id)
int tcp_initialize (async_client_conn_t client_connection)
 Initializes the TCP module.
int tcp_message (ipc_callid_t callid, ipc_call_t *call, ipc_call_t *answer, int *answer_count)
 Processes the TCP message.
void module_print_name (void)
 Prints the module name.
int module_start (async_client_conn_t client_connection)
 Starts the TCP module.
int module_message (ipc_callid_t callid, ipc_call_t *call, ipc_call_t *answer, int *answer_count)
 Processes the TCP message.

Variables

tcp_globals_t tcp_globals
 TCP global data.
tcp_globals_t tcp_globals
 TCP module global data.

Define Documentation

#define IS_IN_INTERVAL_OVERFLOW ( lower,
value,
higher_equal   )     ((((lower) < (value)) && (((value) <= (higher_equal)) || ((higher_equal) < (lower)))) || (((value) <= (higher_equal)) && ((higher_equal) < (lower))))

Returns a value indicating whether the value is in the interval respecting the possible overflow.

The high end and/or the value may overflow, be lower than the low value.

Parameters:
[in] lower The last value before the interval.
[in] value The value to be checked.
[in] higher_equal The last value in the interval.

Referenced by tcp_get_packets_to_send(), tcp_process_acknowledgement(), and tcp_process_established().

#define MAX_TCP_FRAGMENT_SIZE   65535

Maximum TCP fragment size.

Referenced by tcp_initialize_socket_data().

#define NAME   "TCP protocol"

TCP module name.

#define NET_DEFAULT_TCP_INITIAL_TIMEOUT   3000000L

Initial timeout for new connections.

Referenced by tcp_connect_core(), and tcp_refresh_socket_data().

#define NET_DEFAULT_TCP_TIME_WAIT_TIMEOUT   2000L

Default timeout for closing.

Referenced by tcp_process_acknowledgement().

#define NET_DEFAULT_TCP_WINDOW   10240

The TCP window default value.

Referenced by tcp_refresh_socket_data().

#define TCP_COMPUTE_HEADER_LENGTH ( length   )     ((uint8_t) ((length) / 4u))

Returns the TCP header length.

Parameters:
[in] length The TCP header length in bytes.

Referenced by tcp_prepare_operation_header().

#define TCP_FAST_RETRANSMIT_COUNT   3

The number of acknowledgements before retransmit.

Referenced by tcp_process_acknowledgement().

#define TCP_FREE_PORTS_END   65535

Free ports pool end.

Referenced by tcp_connect_core(), and tcp_process_client_messages().

#define TCP_FREE_PORTS_START   1025

Free ports pool start.

Referenced by tcp_connect_core(), and tcp_process_client_messages().

#define TCP_HEADER_LENGTH ( header   )     ((header)->header_length * 4u)

Returns the actual TCP header length in bytes.

Parameters:
[in] header The TCP packet header.

Referenced by tcp_process_established().

#define TCP_HEADER_SIZE   sizeof(tcp_header_t)
#define TCP_INITIAL_SEQUENCE_NUMBER   2999

The initial outgoing sequence number.

Referenced by tcp_refresh_socket_data().

#define TCP_MAX_TIMEOUTS   8

The maximum number of timeouts in a row before singaling connection lost.

Referenced by tcp_timeout().

#define TCP_SYN_SENT_TIMEOUT   1000000L

Timeout for connection initialization, SYN sent.

#define TCPOPT_END_OF_LIST   0x0

End of list TCP option.

#define TCPOPT_MAX_SEGMENT_SIZE   0x2

Maximum segment size TCP option.

#define TCPOPT_MAX_SEGMENT_SIZE_LENGTH   4

Maximum segment size TCP option length.

#define TCPOPT_NO_OPERATION   0x1

No operation TCP option.

#define TCPOPT_SACK   0x5

Selective acknowledgement TCP option.

Has variable length.

#define TCPOPT_SACK_PERMITTED   0x4

Selective acknowledgement permitted TCP option.

#define TCPOPT_SACK_PERMITTED_LENGTH   2

Selective acknowledgement permitted TCP option length.

#define TCPOPT_TIMESTAMP   0x8

Timestamp TCP option.

#define TCPOPT_TIMESTAMP_LENGTH   10

Timestamp TCP option length.

#define TCPOPT_WINDOW_SCALE   0x3

Window scale TCP option.

#define TCPOPT_WINDOW_SCALE_LENGTH   3

Window scale TCP option length.


Typedef Documentation

typedef struct tcp_globals tcp_globals_t

Type definition of the TCP global data.

See also:
tcp_globals

Type definition of the transmission datagram header pointer.

See also:
tcp_header
typedef struct tcp_header tcp_header_t

Type definition of the transmission datagram header.

See also:
tcp_header

Type definition of the Maximum segment size TCP option pointer.

See also:
tcp_max_segment_size_option

Type definition of the Maximum segment size TCP option.

See also:
...

Type definition of the TCP operation data pointer.

See also:
tcp_operation

Type definition of the TCP operation data.

See also:
tcp_operation

Type definition of the transmission datagram header option pointer.

See also:
tcp_option
typedef struct tcp_option tcp_option_t

Type definition of the transmission datagram header option.

See also:
tcp_option

Type definition of the TCP socket specific data pointer.

See also:
tcp_socket_data

Type definition of the TCP socket specific data.

See also:
tcp_socket_data

TCP socket state type definition.

See also:
tcp_socket_state

Type definition of the TCP timeout pointer.

See also:
tcp_timeout
typedef struct tcp_timeout tcp_timeout_t

Type definition of the TCP timeout.

See also:
tcp_timeout

Enumeration Type Documentation

TCP socket state.

Enumerator:
TCP_SOCKET_INITIAL 

Initial.

Not connected or bound.

TCP_SOCKET_LISTEN 

Listening.

Awaiting a connection request from another TCP layer. When SYN is received a new bound socket in the TCP_SOCKET_SYN_RECEIVED state should be created.

TCP_SOCKET_SYN_SENT 

Connecting issued.

A~SYN has been sent, and TCP is awaiting the response SYN. Should continue to the TCP_SOCKET_ESTABLISHED state.

TCP_SOCKET_SYN_RECEIVED 

Connecting received.

A~SYN has been received, a~SYN has been sent, and TCP is awaiting an ACK. Should continue to the TCP_SOCKET_ESTABLISHED state.

TCP_SOCKET_ESTABLISHED 

Connected.

The three-way handshake has been completed.

TCP_SOCKET_FIN_WAIT_1 

Closing started.

The local application has issued a~CLOSE. TCP has sent a~FIN, and is awaiting an ACK or a~FIN. Should continue to the TCP_SOCKET_FIN_WAIT_2 state when an ACK is received. Should continue to the TCP_SOCKET_CLOSING state when a~FIN is received.

TCP_SOCKET_FIN_WAIT_2 

Closing confirmed.

A~FIN has been sent, and an ACK received. TCP is awaiting a~FIN from the remote TCP layer. Should continue to the TCP_SOCKET_CLOSING state.

TCP_SOCKET_CLOSING 

Closing.

A FIN has been sent, a FIN has been received, and an ACK has been sent. TCP is awaiting an ACK for the FIN that was sent. Should continue to the TCP_SOCKET_TIME_WAIT state.

TCP_SOCKET_CLOSE_WAIT 

Closing received.

TCP has received a~FIN, and has sent an ACK. It is awaiting a~close request from the local application before sending a~FIN. Should continue to the TCP_SOCKET_SOCKET_LAST_ACK state.

TCP_SOCKET_LAST_ACK 

A~FIN has been received, and an ACK and a~FIN have been sent.

TCP is awaiting an ACK. Should continue to the TCP_SOCKET_TIME_WAIT state.

TCP_SOCKET_TIME_WAIT 

Closing finished.

FINs have been received and ACK’d, and TCP is waiting two MSLs to remove the connection from the table.

TCP_SOCKET_CLOSED 

Closed.

Imaginary, this indicates that a~connection has been removed from the connection table.


Function Documentation

int module_message ( ipc_callid_t  callid,
ipc_call_t *  call,
ipc_call_t *  answer,
int *  answer_count 
)

Processes the TCP message.

Parameters:
[in] callid The message identifier.
[in] call The message parameters.
[out] answer The message answer parameters.
[out] answer_count The last parameter for the actual answer in the answer parameter.
Returns:
EOK on success.
Other error codes as defined for the tcp_message() function.

References tcp_message().

Here is the call graph for this function:

void module_print_name ( void   ) 

Prints the module name.

See also:
NAME

References NAME.

int module_start ( async_client_conn_t  client_connection  ) 

Starts the TCP module.

Initializes the client connection serving function, initializes the module, registers the module service and starts the async manager, processing IPC messages in an infinite loop.

Parameters:
[in] client_connection The client connection processing function. The module skeleton propagates its own one.
Returns:
EOK on successful module termination.
Other error codes as defined for the tcp_initialize() function.
Other error codes as defined for the REGISTER_ME() macro function.

References ERROR_CODE, ERROR_DECLARE, ERROR_OCCURRED, ERROR_PROPAGATE, net_connect_module(), tcp_globals::net_phone, pm_destroy(), pm_init(), REGISTER_ME, and tcp_initialize().

Here is the call graph for this function:

int tcp_accept_message ( socket_cores_ref  local_sockets,
int  socket_id,
int  new_socket_id,
size_t *  data_fragment_size,
size_t *  addrlen 
)
int tcp_close_message ( socket_cores_ref  local_sockets,
int  socket_id 
)
int tcp_connect_core ( socket_core_ref  socket,
socket_cores_ref  local_sockets,
struct sockaddr addr,
socklen_t  addrlen 
)
int tcp_connect_message ( socket_cores_ref  local_sockets,
int  socket_id,
struct sockaddr addr,
socklen_t  addrlen 
)

References ENOTSOCK, ERROR_CODE, ERROR_DECLARE, ERROR_OCCURRED, socket_core::port, tcp_globals::sockets, tcp_connect_core(), and tcp_free_socket_data().

Referenced by tcp_process_client_messages().

Here is the call graph for this function:

Here is the caller graph for this function:

int tcp_create_notification_packet ( packet_t packet,
socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
int  synchronize,
int  finalize 
)
void tcp_free_socket_data ( socket_core_ref  socket  ) 
packet_t tcp_get_packets_to_send ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data 
)
int tcp_initialize ( async_client_conn_t  client_connection  ) 

Initializes the TCP module.

Parameters:
[in] client_connection The client connection processing function. The module skeleton propagates its own one.
Returns:
EOK on success.
ENOMEM if there is not enough memory left.

Referenced by module_start().

Here is the caller graph for this function:

void tcp_initialize_socket_data ( tcp_socket_data_ref  socket_data  ) 

References tcp_operation::condvar, tcp_socket_data::data_fragment_size, MAX_TCP_FRAGMENT_SIZE, tcp_operation::mutex, tcp_socket_data::operation, and tcp_refresh_socket_data().

Referenced by tcp_process_client_messages(), and tcp_process_listen().

Here is the call graph for this function:

Here is the caller graph for this function:

int tcp_listen_message ( socket_cores_ref  local_sockets,
int  socket_id,
int  backlog 
)

References tcp_socket_data::backlog, ENOTSOCK, and socket_core::specific_data.

Referenced by tcp_process_client_messages().

Here is the caller graph for this function:

int tcp_message ( ipc_callid_t  callid,
ipc_call_t *  call,
ipc_call_t *  answer,
int *  answer_count 
)

Processes the TCP message.

Parameters:
[in] callid The message identifier.
[in] call The message parameters.
[out] answer The message answer parameters.
[out] answer_count The last parameter for the actual answer in the answer parameter.
Returns:
EOK on success.
ENOTSUP if the message is not known.
See also:
tcp_interface.h
IS_NET_TCP_MESSAGE()

Referenced by module_message().

Here is the caller graph for this function:

packet_t tcp_prepare_copy ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
packet_t  packet,
size_t  data_length,
size_t  sequence_number 
)

References tcp_globals::net_phone, packet_get_copy(), socket_core::specific_data, and tcp_send_prepare_packet().

Referenced by tcp_get_packets_to_send(), and tcp_retransmit_packet().

Here is the call graph for this function:

Here is the caller graph for this function:

void tcp_prepare_operation_header ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
tcp_header_ref  header,
int  synchronize,
int  finalize 
)
int tcp_prepare_timeout ( int(*)(void *tcp_timeout_t timeout_function,
socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
size_t  sequence_number,
tcp_socket_state_t  state,
suseconds_t  timeout,
int  globals_read_only 
)
void tcp_process_acknowledgement ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
tcp_header_ref  header 
)
int tcp_process_client_messages ( ipc_callid_t  callid,
ipc_call_t  call 
)
int tcp_process_established ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
tcp_header_ref  header,
packet_t  packet,
int  fragments,
size_t  total_length 
)
int tcp_process_listen ( socket_core_ref  listening_socket,
tcp_socket_data_ref  listening_socket_data,
tcp_header_ref  header,
packet_t  packet,
struct sockaddr src,
struct sockaddr dest,
size_t  addrlen 
)
int tcp_process_packet ( device_id_t  device_id,
packet_t  packet,
services_t  error 
)
int tcp_process_syn_received ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
tcp_header_ref  header,
packet_t  packet 
)
int tcp_process_syn_sent ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
tcp_header_ref  header,
packet_t  packet 
)
int tcp_queue_packet ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
packet_t  packet,
size_t  data_length 
)
int tcp_queue_prepare_packet ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
packet_t  packet,
size_t  data_length 
)
int tcp_queue_received_packet ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
packet_t  packet,
int  fragments,
size_t  total_length 
)
int tcp_received_msg ( device_id_t  device_id,
packet_t  packet,
services_t  receiver,
services_t  error 
)

References ERROR_CODE, ERROR_DECLARE, ERROR_OCCURRED, tcp_globals::lock, and tcp_process_packet().

Here is the call graph for this function:

int tcp_recvfrom_message ( socket_cores_ref  local_sockets,
int  socket_id,
int  flags,
size_t *  addrlen 
)
void tcp_refresh_socket_data ( tcp_socket_data_ref  socket_data  ) 
int tcp_release_after_timeout ( void *  data  ) 
int tcp_release_and_return ( packet_t  packet,
int  result 
)

Releases the packet and returns the result.

Parameters:
[in] packet The packet queue to be released.
[in] result The result to be returned.
Returns:
The result parameter.

References tcp_globals::net_phone, packet_get_id(), and pq_release().

Referenced by tcp_create_notification_packet(), tcp_process_established(), tcp_process_listen(), tcp_process_packet(), tcp_process_syn_received(), tcp_process_syn_sent(), tcp_queue_packet(), tcp_queue_prepare_packet(), tcp_queue_received_packet(), and tcp_send_message().

Here is the call graph for this function:

Here is the caller graph for this function:

void tcp_retransmit_packet ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
size_t  sequence_number 
)
int tcp_send_message ( socket_cores_ref  local_sockets,
int  socket_id,
int  fragments,
size_t *  data_fragment_size,
int  flags 
)
void tcp_send_packets ( device_id_t  device_id,
packet_t  packet 
)
packet_t tcp_send_prepare_packet ( socket_core_ref  socket,
tcp_socket_data_ref  socket_data,
packet_t  packet,
size_t  data_length,
size_t  sequence_number 
)
int tcp_timeout ( void *  data  ) 

Variable Documentation

TCP module global data.

TCP global data.

TCP module global data.


Generated on Thu Mar 11 20:47:46 2010 for Networking and TCP/IP stack for HelenOS system by  doxygen 1.6.1