Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/il/ip/ip_messages.h

    ra64c64d r21580dd  
    5151         */
    5252        NET_IP_ADD_ROUTE = NET_IP_FIRST,
    53         /** Gets the actual route information.
    54          *  @see ip_get_route()
     53        /** Sets the default gateway.
     54         *  @see ip_set_default_gateway()
    5555         */
    56         NET_IP_GET_ROUTE,
     56        NET_IP_SET_GATEWAY,
    5757        /** Processes the received error notification.
    5858         *  @see ip_received_error_msg()
    5959         */
    6060        NET_IP_RECEIVED_ERROR,
    61         /** Sets the default gateway.
    62          *  @see ip_set_default_gateway()
     61        /** Gets the actual route information.
     62         *  @see ip_get_route()
    6363         */
    64         NET_IP_SET_GATEWAY
     64        NET_IP_GET_ROUTE
    6565} ip_messages;
    6666
     
    6969/*@{*/
    7070
     71/** Returns the gateway message parameter.
     72 *  @param[in] call The message call structure.
     73 */
     74#define IP_GET_GATEWAY( call )          ({ in_addr_t addr; addr.s_addr = IPC_GET_ARG2( * call ); addr; })
     75
    7176/** Returns the address message parameter.
    7277 *  @param[in] call The message call structure.
    7378 */
    74 #define IP_GET_ADDRESS(call)            ({in_addr_t addr; addr.s_addr = IPC_GET_ARG3(*call); addr;})
     79#define IP_GET_ADDRESS( call )          ({ in_addr_t addr; addr.s_addr = IPC_GET_ARG3( * call ); addr; })
    7580
    76 /** Returns the gateway message parameter.
     81/** Returns the network mask message parameter.
    7782 *  @param[in] call The message call structure.
    7883 */
    79 #define IP_GET_GATEWAY(call)            ({in_addr_t addr; addr.s_addr = IPC_GET_ARG2(*call); addr;})
     84#define IP_GET_NETMASK( call )          ({ in_addr_t addr; addr.s_addr = IPC_GET_ARG4( * call ); addr; })
     85
     86/** Returns the protocol message parameter.
     87 *  @param[in] call The message call structure.
     88 */
     89#define IP_GET_PROTOCOL( call )         (( ip_protocol_t ) IPC_GET_ARG1( * call ))
    8090
    8191/** Sets the header length in the message answer.
    8292 *  @param[out] answer The message answer structure.
    8393 */
    84 #define IP_SET_HEADERLEN(answer)        ((size_t *) &IPC_GET_ARG2(*answer))
    85 
    86 /** Returns the network mask message parameter.
    87  *  @param[in] call The message call structure.
    88  */
    89 #define IP_GET_NETMASK(call)            ({in_addr_t addr; addr.s_addr = IPC_GET_ARG4(*call); addr;})
    90 
    91 /** Returns the protocol message parameter.
    92  *  @param[in] call The message call structure.
    93  */
    94 #define IP_GET_PROTOCOL(call)           ((ip_protocol_t) IPC_GET_ARG1(*call))
     94#define IP_SET_HEADERLEN( answer )      (( size_t * ) & IPC_GET_ARG2( * answer ))
    9595
    9696/*@}*/
Note: See TracChangeset for help on using the changeset viewer.