Changeset 59ecd4a in mainline for uspace/lib/net/include/nil_interface.h
- Timestamp:
- 2010-04-04T21:41:47Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5db9084
- Parents:
- 36a75a2 (diff), ee7e82a9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/nil_interface.h
r36a75a2 r59ecd4a 47 47 #include <ipc/ipc.h> 48 48 49 #include "../messages.h" 50 51 #include "../structures/measured_strings.h" 52 #include "../structures/packet/packet.h" 53 54 #include "../nil/nil_messages.h" 55 56 #include "device.h" 49 #include <net_messages.h> 50 #include <adt/measured_strings.h> 51 #include <packet/packet.h> 52 #include <nil_messages.h> 53 #include <net_device.h> 57 54 58 55 /** @name Network interface layer module interface … … 129 126 * @returns Other error codes as defined for each specific module device state function. 130 127 */ 131 int nil_device_state_msg(int nil_phone, device_id_t device_id, int state);128 extern int nil_device_state_msg(int nil_phone, device_id_t device_id, int state); 132 129 133 130 /** Passes the packet queue to the network interface layer. … … 140 137 * @returns Other error codes as defined for each specific module received function. 141 138 */ 142 int nil_received_msg(int nil_phone, device_id_t device_id, packet_t packet, services_t target);139 extern int nil_received_msg(int nil_phone, device_id_t device_id, packet_t packet, services_t target); 143 140 144 141 /** Creates bidirectional connection with the network interface layer module and registers the message receiver.
Note:
See TracChangeset
for help on using the changeset viewer.