Subversion Repositories HelenOS

Rev

Rev 4578 | Rev 4703 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4578 Rev 4695
Line 48... Line 48...
48
 
48
 
49
#define NET_NETIF_COUNT     8
49
#define NET_NETIF_COUNT     8
50
#define NET_NET_COUNT       9
50
#define NET_NET_COUNT       9
51
#define NET_NIL_COUNT       7
51
#define NET_NIL_COUNT       7
52
#define NET_ETH_COUNT       0
52
#define NET_ETH_COUNT       0
53
#define NET_IL_COUNT        5
53
#define NET_IL_COUNT        6
54
#define NET_IP_COUNT        2
54
#define NET_IP_COUNT        2
55
#define NET_ARP_COUNT       4
55
#define NET_ARP_COUNT       5
56
#define NET_RARP_COUNT      0
56
#define NET_RARP_COUNT      0
57
#define NET_ICMP_COUNT      0
57
#define NET_ICMP_COUNT      0
58
#define NET_TL_COUNT        1
58
#define NET_TL_COUNT        1
59
#define NET_UDP_COUNT       0
59
#define NET_UDP_COUNT       0
60
#define NET_TCP_COUNT       0
60
#define NET_TCP_COUNT       0
Line 127... Line 127...
127
 */
127
 */
128
#define IPC_GET_PACKET( call )      ( packet_id_t ) IPC_GET_ARG2( * call )
128
#define IPC_GET_PACKET( call )      ( packet_id_t ) IPC_GET_ARG2( * call )
129
#define IPC_GET_COUNT( call )       ( size_t ) IPC_GET_ARG2( * call )
129
#define IPC_GET_COUNT( call )       ( size_t ) IPC_GET_ARG2( * call )
130
#define IPC_GET_STATE( call )       ( device_state_t ) IPC_GET_ARG2( * call )
130
#define IPC_GET_STATE( call )       ( device_state_t ) IPC_GET_ARG2( * call )
131
 
131
 
-
 
132
/** Returns the maximum transmission unit message parameter.
-
 
133
 */
-
 
134
#define IPC_GET_MTU( call )         ( size_t ) IPC_GET_ARG2( * call )
-
 
135
 
132
/** Returns the device driver service message parameter.
136
/** Returns the device driver service message parameter.
133
 */
137
 */
134
#define IPC_GET_SERVICE( call )     ( services_t ) IPC_GET_ARG3( * call )
138
#define IPC_GET_SERVICE( call )     ( services_t ) IPC_GET_ARG3( * call )
135
#define IPC_GET_TARGET( call )      ( services_t ) IPC_GET_ARG3( * call )
139
#define IPC_GET_TARGET( call )      ( services_t ) IPC_GET_ARG3( * call )
136
#define IPC_GET_SENDER( call )      ( services_t ) IPC_GET_ARG3( * call )
140
#define IPC_GET_SENDER( call )      ( services_t ) IPC_GET_ARG3( * call )