Changeset c69d327 in mainline for uspace/lib/net
- Timestamp:
- 2010-10-08T21:32:49Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 368fb2c
- Parents:
- 0a866eeb
- Location:
- uspace/lib/net
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/generic/packet_client.c
r0a866eeb rc69d327 44 44 45 45 #include <net_messages.h> 46 #include < packet/packet.h>47 #include < packet/packet_header.h>46 #include <net/packet.h> 47 #include <net/packet_header.h> 48 48 49 49 int packet_copy_data(packet_t packet, const void * data, size_t length) -
uspace/lib/net/generic/packet_remote.c
r0a866eeb rc69d327 47 47 #include <packet_remote.h> 48 48 49 #include < packet/packet.h>50 #include < packet/packet_header.h>49 #include <net/packet.h> 50 #include <net/packet_header.h> 51 51 52 52 /** Obtain the packet from the packet server as the shared memory block. -
uspace/lib/net/generic/socket_core.c
r0a866eeb rc69d327 46 46 #include <adt/dynamic_fifo.h> 47 47 #include <adt/int_map.h> 48 #include < packet/packet.h>48 #include <net/packet.h> 49 49 #include <packet_client.h> 50 50 #include <packet_remote.h> -
uspace/lib/net/il/ip_client.c
r0a866eeb rc69d327 43 43 #include <ip_header.h> 44 44 45 #include < packet/packet.h>45 #include <net/packet.h> 46 46 47 47 size_t ip_client_header_length(packet_t packet){ -
uspace/lib/net/include/icmp_client.h
r0a866eeb rc69d327 39 39 40 40 #include <icmp_codes.h> 41 #include < packet/packet.h>41 #include <net/packet.h> 42 42 43 43 /** Processes the received packet prefixed with an ICMP header. -
uspace/lib/net/include/icmp_interface.h
r0a866eeb rc69d327 39 39 #include <net_device.h> 40 40 #include <adt/measured_strings.h> 41 #include < packet/packet.h>41 #include <net/packet.h> 42 42 #include <net/inet.h> 43 43 #include <ip_codes.h> -
uspace/lib/net/include/il_interface.h
r0a866eeb rc69d327 45 45 #include <net_messages.h> 46 46 #include <net_device.h> 47 #include < packet/packet.h>47 #include <net/packet.h> 48 48 #include <packet_client.h> 49 49 #include <il_messages.h> -
uspace/lib/net/include/ip_client.h
r0a866eeb rc69d327 41 41 #include <sys/types.h> 42 42 43 #include < packet/packet.h>43 #include <net/packet.h> 44 44 #include <ip_codes.h> 45 45 #include <ip_interface.h> -
uspace/lib/net/include/ip_interface.h
r0a866eeb rc69d327 39 39 40 40 #include <net_device.h> 41 #include < packet/packet.h>41 #include <net/packet.h> 42 42 43 43 #include <net/in.h> -
uspace/lib/net/include/netif_local.h
r0a866eeb rc69d327 48 48 #include <adt/measured_strings.h> 49 49 #include <net_device.h> 50 #include < packet/packet.h>50 #include <net/packet.h> 51 51 52 52 /** Network interface device specific data. -
uspace/lib/net/include/nil_interface.h
r0a866eeb rc69d327 41 41 #include <net_messages.h> 42 42 #include <adt/measured_strings.h> 43 #include < packet/packet.h>43 #include <net/packet.h> 44 44 #include <nil_messages.h> 45 45 #include <net_device.h> -
uspace/lib/net/include/packet_client.h
r0a866eeb rc69d327 45 45 #define __NET_PACKET_CLIENT_H__ 46 46 47 #include < packet/packet.h>47 #include <net/packet.h> 48 48 49 49 /** @name Packet client interface -
uspace/lib/net/include/packet_remote.h
r0a866eeb rc69d327 34 34 #define __NET_PACKET_REMOTE_H__ 35 35 36 #include < packet/packet.h>36 #include <net/packet.h> 37 37 38 38 extern int packet_translate_remote(int, packet_ref, packet_id_t); -
uspace/lib/net/include/tl_common.h
r0a866eeb rc69d327 39 39 40 40 #include <net/socket_codes.h> 41 42 #include <packet/packet.h> 41 #include <net/packet.h> 43 42 #include <net_device.h> 44 43 #include <net/inet.h> -
uspace/lib/net/include/tl_interface.h
r0a866eeb rc69d327 43 43 #include <net_messages.h> 44 44 #include <net_device.h> 45 #include < packet/packet.h>45 #include <net/packet.h> 46 46 #include <packet_client.h> 47 47 #include <tl_messages.h> -
uspace/lib/net/netif/netif_local.c
r0a866eeb rc69d327 46 46 #include <net_messages.h> 47 47 #include <net/modules.h> 48 #include < packet/packet.h>48 #include <net/packet.h> 49 49 #include <packet_client.h> 50 50 #include <packet/packet_server.h> -
uspace/lib/net/netif/netif_nil_bundle.c
r0a866eeb rc69d327 40 40 #include <ipc/net.h> 41 41 42 #include < packet/packet.h>42 #include <net/packet.h> 43 43 #include <netif_nil_bundle.h> 44 44 #include <netif_local.h> -
uspace/lib/net/netif/netif_remote.c
r0a866eeb rc69d327 39 39 #include <net/modules.h> 40 40 #include <adt/measured_strings.h> 41 #include < packet/packet.h>41 #include <net/packet.h> 42 42 #include <packet_client.h> 43 43 #include <net_device.h> -
uspace/lib/net/nil/nil_remote.c
r0a866eeb rc69d327 39 39 #include <net_device.h> 40 40 #include <nil_interface.h> 41 #include < packet/packet.h>41 #include <net/packet.h> 42 42 #include <packet_client.h> 43 43 #include <nil_messages.h> -
uspace/lib/net/tl/icmp_client.c
r0a866eeb rc69d327 45 45 #include <icmp_codes.h> 46 46 #include <icmp_client.h> 47 #include < packet/packet.h>47 #include <net/packet.h> 48 48 #include <packet_client.h> 49 49 #include <icmp_header.h> -
uspace/lib/net/tl/tl_common.c
r0a866eeb rc69d327 45 45 #include <err.h> 46 46 47 #include < packet/packet.h>47 #include <net/packet.h> 48 48 #include <packet_client.h> 49 49 #include <packet_remote.h>
Note:
See TracChangeset
for help on using the changeset viewer.