Changeset ef689ef0 in mainline for uspace/lib/net/include
- Timestamp:
- 2010-10-14T22:08:50Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a7a85d16
- Parents:
- 10056483 (diff), f63a591d (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. - Location:
- uspace/lib/net/include
- Files:
-
- 1 added
- 13 edited
-
arp_interface.h (modified) (1 diff)
-
generic.h (added)
-
icmp_interface.h (modified) (1 diff)
-
il_interface.h (modified) (1 diff)
-
ip_interface.h (modified) (1 diff)
-
ip_remote.h (modified) (2 diffs)
-
net_interface.h (modified) (1 diff)
-
netif_local.h (modified) (1 diff)
-
netif_remote.h (modified) (1 diff)
-
nil_interface.h (modified) (2 diffs)
-
nil_remote.h (modified) (1 diff)
-
socket_core.h (modified) (1 diff)
-
tl_common.h (modified) (1 diff)
-
tl_interface.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/arp_interface.h
r10056483 ref689ef0 35 35 36 36 #include <adt/measured_strings.h> 37 #include <net_device.h> 37 #include <task.h> 38 39 #include <ipc/services.h> 40 41 #include <net/device.h> 42 #include <net/socket.h> 38 43 39 44 /** @name ARP module interface -
uspace/lib/net/include/icmp_interface.h
r10056483 ref689ef0 37 37 #include <sys/types.h> 38 38 39 #include <net _device.h>39 #include <net/device.h> 40 40 #include <adt/measured_strings.h> 41 41 #include <net/packet.h> -
uspace/lib/net/include/il_interface.h
r10056483 ref689ef0 39 39 #define __NET_IL_INTERFACE_H__ 40 40 41 #include < async.h>41 #include <generic.h> 42 42 43 43 #include <ipc/services.h> 44 44 45 #include <net_messages.h> 46 #include <net_device.h> 45 #include <net/device.h> 47 46 #include <net/packet.h> 47 #include <il_messages.h> 48 48 49 #include <packet_client.h> 49 #include <il_messages.h>50 50 51 51 /** @name Internetwork layer module interface -
uspace/lib/net/include/ip_interface.h
r10056483 ref689ef0 38 38 #include <ipc/services.h> 39 39 40 #include <net _device.h>40 #include <net/device.h> 41 41 #include <net/packet.h> 42 42 -
uspace/lib/net/include/ip_remote.h
r10056483 ref689ef0 34 34 #define __NET_IP_REMOTE_H__ 35 35 36 #include <async.h>37 36 #include <ipc/services.h> 38 37 … … 40 39 #include <net/inet.h> 41 40 #include <net/in.h> 41 #include <net/packet.h> 42 #include <net/device.h> 43 #include <net/socket.h> 42 44 43 45 extern int ip_set_gateway_req_remote(int, device_id_t, in_addr_t); -
uspace/lib/net/include/net_interface.h
r10056483 ref689ef0 36 36 #include <ipc/services.h> 37 37 38 #include <net _device.h>38 #include <net/device.h> 39 39 #include <adt/measured_strings.h> 40 40 -
uspace/lib/net/include/netif_local.h
r10056483 ref689ef0 46 46 47 47 #include <adt/measured_strings.h> 48 #include <net _device.h>48 #include <net/device.h> 49 49 #include <net/packet.h> 50 50 -
uspace/lib/net/include/netif_remote.h
r10056483 ref689ef0 34 34 #define __NET_NETIF_REMOTE_H__ 35 35 36 #include < async.h>37 #include < fibril_synch.h>38 #include < ipc/ipc.h>36 #include <ipc/services.h> 37 #include <adt/measured_strings.h> 38 #include <net/device.h> 39 39 40 40 extern int netif_get_addr_req_remote(int, device_id_t, measured_string_ref *, -
uspace/lib/net/include/nil_interface.h
r10056483 ref689ef0 39 39 #include <ipc/ipc.h> 40 40 41 #include <net_messages.h> 42 #include <adt/measured_strings.h> 43 #include <net/packet.h> 41 #include <generic.h> 44 42 #include <nil_messages.h> 45 #include <n et_device.h>43 #include <nil_remote.h> 46 44 47 45 #define nil_bind_service(service, device_id, me, receiver) \ … … 67 65 netif_service) 68 66 69 70 #include <nil_remote.h>71 #include <packet/packet_server.h>72 73 67 #define nil_device_state_msg nil_device_state_msg_remote 74 68 #define nil_received_msg nil_received_msg_remote -
uspace/lib/net/include/nil_remote.h
r10056483 ref689ef0 34 34 #define __NET_NIL_REMOTE_H__ 35 35 36 #include < async.h>37 #include < fibril_synch.h>38 #include < ipc/ipc.h>36 #include <ipc/services.h> 37 #include <net/device.h> 38 #include <net/packet.h> 39 39 40 40 extern int nil_device_state_msg_remote(int, device_id_t, int); -
uspace/lib/net/include/socket_core.h
r10056483 ref689ef0 41 41 42 42 #include <net/in.h> 43 #include <net _device.h>43 #include <net/device.h> 44 44 #include <adt/generic_char_map.h> 45 45 #include <adt/dynamic_fifo.h> -
uspace/lib/net/include/tl_common.h
r10056483 ref689ef0 40 40 #include <net/socket_codes.h> 41 41 #include <net/packet.h> 42 #include <net _device.h>42 #include <net/device.h> 43 43 #include <net/inet.h> 44 44 -
uspace/lib/net/include/tl_interface.h
r10056483 ref689ef0 41 41 #include <ipc/services.h> 42 42 43 #include < net_messages.h>44 #include <net _device.h>43 #include <generic.h> 44 #include <net/device.h> 45 45 #include <net/packet.h> 46 46 #include <packet_client.h>
Note:
See TracChangeset
for help on using the changeset viewer.
