Changeset 2687bdb in mainline
- Timestamp:
- 2010-10-06T19:31:28Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e4554d4
- Parents:
- fe5d3c1b
- Location:
- uspace
- Files:
-
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/byteorder.h
rfe5d3c1b r2687bdb 80 80 #endif 81 81 82 #define htons(n) host2uint16_t_be((n)) 83 #define htonl(n) host2uint32_t_be((n)) 84 #define ntohs(n) uint16_t_be2host((n)) 85 #define ntohl(n) uint32_t_be2host((n)) 86 82 87 static inline uint64_t uint64_t_byteorder_swap(uint64_t n) 83 88 { -
uspace/lib/socket/include/inet.h
rfe5d3c1b r2687bdb 39 39 40 40 #include <sys/types.h> 41 42 #include <net_byteorder.h> 41 #include <byteorder.h> 43 42 44 43 /** Type definition of the socket address. -
uspace/lib/socket/include/socket.h
rfe5d3c1b r2687bdb 41 41 42 42 #include <net/socket_codes.h> 43 44 #include <net_byteorder.h> 43 #include <byteorder.h> 44 45 45 #include <in.h> 46 46 #include <in6.h> -
uspace/srv/hw/netif/dp8390/dp8390.c
rfe5d3c1b r2687bdb 34 34 35 35 #include <assert.h> 36 #include <byteorder.h> 36 37 #include <errno.h> 37 38 38 #include <net_byteorder.h>39 39 #include <netif_local.h> 40 40 #include <packet/packet.h> -
uspace/srv/net/il/arp/arp.c
rfe5d3c1b r2687bdb 45 45 #include <ipc/ipc.h> 46 46 #include <ipc/services.h> 47 #include <byteorder.h> 47 48 #include <err.h> 48 49 49 50 #include <net_messages.h> 50 51 #include <net_modules.h> 51 #include <net_byteorder.h>52 52 #include <net_device.h> 53 53 #include <arp_interface.h> -
uspace/srv/net/il/ip/ip.c
rfe5d3c1b r2687bdb 45 45 #include <ipc/services.h> 46 46 #include <sys/types.h> 47 #include <byteorder.h> 47 48 48 49 #include <net/socket_codes.h> … … 51 52 #include <net_modules.h> 52 53 #include <arp_interface.h> 53 #include <net_byteorder.h>54 54 #include <net_checksum.h> 55 55 #include <net_device.h> -
uspace/srv/net/nil/eth/eth.c
rfe5d3c1b r2687bdb 40 40 #include <mem.h> 41 41 #include <stdio.h> 42 #include <byteorder.h> 42 43 #include <str.h> 43 44 #include <err.h> … … 48 49 #include <net_messages.h> 49 50 #include <net_modules.h> 50 #include <net_byteorder.h>51 51 #include <net_checksum.h> 52 52 #include <ethernet_lsap.h> -
uspace/srv/net/tl/icmp/icmp.c
rfe5d3c1b r2687bdb 46 46 #include <sys/time.h> 47 47 #include <sys/types.h> 48 #include <byteorder.h> 48 49 #include <errno.h> 49 50 #include <err.h> … … 56 57 #include <packet/packet_client.h> 57 58 #include <packet_remote.h> 58 #include <net_byteorder.h>59 59 #include <net_checksum.h> 60 60 #include <icmp_api.h>
Note:
See TracChangeset
for help on using the changeset viewer.