Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4758 → Rev 4759

/branches/network/uspace/srv/net/tl/tcp/tcp.c
120,7 → 120,7
* The high end and/or the value may overflow, be lower than the low value.
* @param[in] lower The last value before the interval.
* @param[in] value The value to be checked.
* @param[in] high_equal The last value in the interval.
* @param[in] higher_equal The last value in the interval.
*/
#define IS_IN_INTERVAL_OVERFLOW( lower, value, higher_equal ) (((( lower ) < ( value )) && ((( value ) <= ( higher_equal )) || (( higher_equal ) < ( lower )))) || ((( value ) <= ( higher_equal )) && (( higher_equal ) < ( lower ))))
 
212,8 → 212,6
*/
tcp_globals_t tcp_globals;
 
/** Initializes the module.
*/
int tcp_initialize( async_client_conn_t client_connection ){
ERROR_DECLARE;