Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4759 → Rev 4758

/branches/network/uspace/doc/doxygroups.h
29,7 → 29,7
*/
 
/**
* @defgroup net Networking Stack
* @defgroup net Networking Subsystem
* @ingroup srvcs
*/
 
/branches/network/uspace/srv/net/documentation.txt
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/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] higher_equal The last value in the interval.
* @param[in] high_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,6 → 212,8
*/
tcp_globals_t tcp_globals;
 
/** Initializes the module.
*/
int tcp_initialize( async_client_conn_t client_connection ){
ERROR_DECLARE;
 
/branches/network/uspace/srv/net/Doxyfile
4,8 → 4,8
# Project related configuration options
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "Networking and TCP/IP stack for HelenOS system"
PROJECT_NUMBER = "Master thesis 2009"
PROJECT_NAME = "HelenOS Networking subsystem"
PROJECT_NUMBER = "Diploma thesis 2008/2009"
OUTPUT_DIRECTORY = doc/
CREATE_SUBDIRS = YES
OUTPUT_LANGUAGE = English
94,8 → 94,7
# configuration options related to the input files
#---------------------------------------------------------------------------
INPUT = ./ \
../../doc/doxygroups.h \
./documentation.txt
../../doc/doxygroups.h
INPUT_ENCODING = UTF-8
FILE_PATTERNS = *.c \
*.cc \