Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4755 → Rev 4756

/branches/network/uspace/srv/net/socket/socket_messages.h
33,7 → 33,6
/** @file
* Socket messages.
* @see socket.h
* \todo
*/
 
 
46,21 → 45,65
 
#include "../include/socket_codes.h"
 
/** Socket client messages.
*/
typedef enum{
/** Creates a new socket.
* @see socket()
*/
NET_SOCKET = NET_SOCKET_FIRST,
/** Binds the socket.
* @see bind()
*/
NET_SOCKET_BIND,
/** Creates a new socket.
* @see socket()
*/
NET_SOCKET_LISTEN,
/** Accepts an incomming connection.
* @see accept()
*/
NET_SOCKET_ACCEPT,
/** Connects the socket.
* @see connect()
*/
NET_SOCKET_CONNECT,
/** Closes the socket.
* @see closesocket()
*/
NET_SOCKET_CLOSE,
/** Sends data via the stream socket.
* @see send()
*/
NET_SOCKET_SEND,
/** Sends data via the datagram socket.
* @see sendto()
*/
NET_SOCKET_SENDTO,
/** Receives data from the stream socket.
* @see socket()
*/
NET_SOCKET_RECV,
/** Receives data from the datagram socket.
* @see socket()
*/
NET_SOCKET_RECVFROM,
/** Gets the socket option.
* @see getsockopt()
*/
NET_SOCKET_GETSOCKOPT,
/** Sets the socket option.
* @see setsockopt()
*/
NET_SOCKET_SETSOCKOPT,
/** New socket for acceptence notification message.
*/
NET_SOCKET_ACCEPTED,
/** New data received notification message.
*/
NET_SOCKET_RECEIVED,
/** New socket data fragment size notification message.
*/
NET_SOCKET_DATA_FRAGMENT_SIZE
} socket_messages;
 
68,27 → 111,86
*/
/*@{*/
 
#define SOCKET_SET_SOCKET_ID( call ) ( int * ) & IPC_GET_ARG1( call )
#define SOCKET_GET_SOCKET_ID( call ) ( int ) IPC_GET_ARG1( call )
#define SOCKET_SET_READ_DATA_LENGTH( call ) ( int * ) & IPC_GET_ARG1( call )
#define SOCKET_GET_READ_DATA_LENGTH( call ) ( int ) IPC_GET_ARG1( call )
/** Sets the socket identifier in the message answer.
* @param[out] answer The message answer structure.
*/
#define SOCKET_SET_SOCKET_ID( answer ) ( int * ) & IPC_GET_ARG1( answer )
 
#define SOCKET_GET_BACKLOG( call ) ( int ) IPC_GET_ARG2( call )
#define SOCKET_GET_OPT_LEVEL( call ) ( int ) IPC_GET_ARG2( call )
#define SOCKET_SET_ADDRESS_LENGTH( call ) ( socklen_t * ) & IPC_GET_ARG2( call )
#define SOCKET_GET_ADDRESS_LENGTH( call ) ( socklen_t ) IPC_GET_ARG2( call )
/** Returns the socket identifier message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_SOCKET_ID( call ) ( int ) IPC_GET_ARG1( call )
 
/** Sets the read data length in the message answer.
* @param[out] answer The message answer structure.
*/
#define SOCKET_SET_READ_DATA_LENGTH( answer ) ( int * ) & IPC_GET_ARG1( answer )
 
/** Returns the read data length message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_READ_DATA_LENGTH( call ) ( int ) IPC_GET_ARG1( call )
 
/** Returns the backlog message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_BACKLOG( call ) ( int ) IPC_GET_ARG2( call )
 
/** Returns the option level message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_OPT_LEVEL( call ) ( int ) IPC_GET_ARG2( call )
 
/** Sets the address length in the message answer.
* @param[out] answer The message answer structure.
*/
#define SOCKET_SET_ADDRESS_LENGTH( answer ) ( socklen_t * ) & IPC_GET_ARG2( answer )
 
/** Returns the address length message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_ADDRESS_LENGTH( call ) ( socklen_t ) IPC_GET_ARG2( call )
 
/** Returns the data fragment size message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_DATA_FRAGMENT_SIZE( call ) ( size_t ) IPC_GET_ARG2( call )
#define SOCKET_SET_DATA_FRAGMENT_SIZE( call ) ( size_t * ) & IPC_GET_ARG2( call )
 
#define SOCKET_SET_HEADER_SIZE( call ) ( int * ) & IPC_GET_ARG3( call )
#define SOCKET_GET_HEADER_SIZE( call ) ( int ) IPC_GET_ARG3( call )
/** Sets the data fragment size in the message answer.
* @param[out] answer The message answer structure.
*/
#define SOCKET_SET_DATA_FRAGMENT_SIZE( answer ) ( size_t * ) & IPC_GET_ARG2( answer )
 
#define SOCKET_GET_FLAGS( call ) ( int ) IPC_GET_ARG4( call )
#define SOCKET_GET_OPT_NAME( call ) ( int ) IPC_GET_ARG4( call )
/** Sets the header size in the message answer.
* @param[out] answer The message answer structure.
*/
#define SOCKET_SET_HEADER_SIZE( answer ) ( int * ) & IPC_GET_ARG3( answer )
 
#define SOCKET_GET_DATA_FRAGMENTS( call ) ( int ) IPC_GET_ARG5( call )
#define SOCKET_GET_NEW_SOCKET_ID( call ) ( int ) IPC_GET_ARG5( call )
/** Returns the header size message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_HEADER_SIZE( call ) ( int ) IPC_GET_ARG3( call )
 
/** Returns the flags message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_FLAGS( call ) ( int ) IPC_GET_ARG4( call )
 
/** Returns the option name message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_OPT_NAME( call ) ( int ) IPC_GET_ARG4( call )
 
/** Returns the data fragments message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_DATA_FRAGMENTS( call ) ( int ) IPC_GET_ARG5( call )
 
/** Returns the new socket identifier message parameter.
* @param[in] call The message call structure.
*/
#define SOCKET_GET_NEW_SOCKET_ID( call ) ( int ) IPC_GET_ARG5( call )
 
/*@}*/
 
#endif