Changes in uspace/srv/net/nil/nildummy/nildummy.c [1bfd3d3:46d4d9f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/nildummy/nildummy.c
r1bfd3d3 r46d4d9f 106 106 static void nildummy_receiver(ipc_callid_t iid, ipc_call_t *icall) 107 107 { 108 packet_t packet;108 packet_t *packet; 109 109 int rc; 110 110 … … 304 304 305 305 int nil_received_msg_local(int nil_phone, device_id_t device_id, 306 packet_t packet, services_t target)307 { 308 packet_t next;306 packet_t *packet, services_t target) 307 { 308 packet_t *next; 309 309 310 310 fibril_rwlock_read_lock(&nildummy_globals.protos_lock); … … 354 354 * @return EINVAL if the service parameter is not known. 355 355 */ 356 static int nildummy_send_message(device_id_t device_id, packet_t packet,356 static int nildummy_send_message(device_id_t device_id, packet_t *packet, 357 357 services_t sender) 358 358 { … … 378 378 { 379 379 measured_string_t *address; 380 packet_t packet;380 packet_t *packet; 381 381 size_t addrlen; 382 382 size_t prefix;
Note:
See TracChangeset
for help on using the changeset viewer.