Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4698 → Rev 4699

/branches/network/uspace/doc/doxygroups.h
61,6 → 61,11
* @ingroup net_nil
*/
 
/**
* @defgroup nildummy Dummy network interface layer Service
* @ingroup net_nil
*/
 
/**
* @defgroup net_il Inter-networking layer
* @ingroup net
82,6 → 87,11
*/
 
/**
* @defgroup udp User Datagram Protocol (UDP) Service
* @ingroup net_tl
*/
 
/**
* @defgroup tcp Transmission Control Protocol (TCP) Service
* @ingroup net_tl
*/
91,6 → 101,31
* @ingroup net
*/
 
/**
* @defgroup net_app Applications
* @ingroup net
*/
 
/**
* @defgroup echo Echo Service
* @ingroup net_app
*/
 
/**
* @defgroup net_lib Application library
* @ingroup net
*/
 
/**
* @defgroup socket Sockets
* @ingroup net_lib
*/
 
/**
* @defgroup netdb Netdb
* @ingroup net_lib
*/
 
/**
* @cond amd64
* @defgroup pci PCI Service
/branches/network/uspace/srv/net/app/echo/echo.c
110,13 → 110,13
int parse_parameter_name_int( int argc, char ** argv, int * index, int * value, const char * name, int offset, int ( * parse_value )( const char * value ));
 
/** Translates the character string to the protocol family number.
* @param The protocol family name. Input parameter.
* @param name The protocol family name. Input parameter.
* @returns The corresponding protocol family number.
*/
int parse_protocol_family( const char * name );
 
/** Translates the character string to the socket type number.
* @param The socket type name. Input parameter.
* @param name The socket type name. Input parameter.
* @returns The corresponding socket type number.
*/
int parse_socket_type( const char * name );
/branches/network/uspace/srv/net/nil/nildummy/nildummy.c
121,7 → 121,6
 
/** Returns the device hardware address.
* @param device_id The device identifier. Input parameter.
* @param type Type of the desired address. Input parameter
* @param address The device hardware address. Output parameter.
* @returns EOK on success.
* @returns EBADMEM if the address parameter is NULL.
/branches/network/uspace/srv/net/Doxyfile
27,7 → 27,7
FULL_PATH_NAMES = YES
STRIP_FROM_PATH = .
STRIP_FROM_INC_PATH =
SHORT_NAMES = NO
SHORT_NAMES = YES
JAVADOC_AUTOBRIEF = YES
QT_AUTOBRIEF = NO
MULTILINE_CPP_IS_BRIEF = NO
/branches/network/uspace/srv/net/include/crc.h
79,7 → 79,7
uint32_t compute_checksum( uint32_t seed, uint8_t * data, size_t length );
 
/** Compacts the computed checksum to the 16 bit number adding the carries.
* @param Computed checksum. Input parameter.
* @param sum Computed checksum. Input parameter.
* @returns Compacted computed checksum to the 16 bits.
*/
uint16_t compact_checksum( uint32_t sum );
/branches/network/uspace/srv/net/include/il_interface.h
77,6 → 77,7
* @param il_phone The internetwork layer module phone used for (semi)remote calls. Input parameter.
* @param device_id The device identifier. Input parameter.
* @param mtu The new mtu value. Input parameter.
* @param target The target internetwork module service to be delivered to. Input parameter.
* @returns EOK on success.
*/
inline static int il_mtu_changed_msg( int il_phone, device_id_t device_id, int mtu, services_t target ){