Changeset e98b1d5 in mainline
- Timestamp:
- 2010-09-26T11:37:37Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c5b59ce
- Parents:
- 29fa68b
- Location:
- uspace
- Files:
-
- 1 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/netecho/print_error.c
r29fa68b re98b1d5 36 36 37 37 #include <stdio.h> 38 #include <errno.h> 38 39 39 40 #include <icmp_codes.h> 40 #include <socket_errno.h>41 41 42 42 #include "print_error.h" -
uspace/app/ping/ping.c
r29fa68b re98b1d5 42 42 #include <ipc/services.h> 43 43 #include <str_error.h> 44 #include <errno.h> 44 45 #include <arg_parse.h> 45 46 … … 49 50 #include <inet.h> 50 51 #include <ip_codes.h> 51 #include <socket_errno.h>52 52 #include <socket_parse.h> 53 53 -
uspace/lib/c/include/errno.h
r29fa68b re98b1d5 56 56 #define EMLINK (-266) 57 57 58 /** An API function is called while another blocking function is in progress. */ 59 #define EINPROGRESS (-10036) 60 61 /** The socket identifier is not valid. */ 62 #define ENOTSOCK (-10038) 63 64 /** The destination address required. */ 65 #define EDESTADDRREQ (-10039) 66 67 /** Protocol is not supported. */ 68 #define EPROTONOSUPPORT (-10043) 69 70 /** Socket type is not supported. */ 71 #define ESOCKTNOSUPPORT (-10044) 72 73 /** Protocol family is not supported. */ 74 #define EPFNOSUPPORT (-10046) 75 76 /** Address family is not supported. */ 77 #define EAFNOSUPPORT (-10047) 78 79 /** Address is already in use. */ 80 #define EADDRINUSE (-10048) 81 82 /** The socket is not connected or bound. */ 83 #define ENOTCONN (-10057) 84 85 /** The requested operation was not performed. 86 * Try again later. 87 */ 88 #define TRY_AGAIN (-11002) 89 90 /** No data. 91 */ 92 #define NO_DATA (-11004) 93 58 94 #endif 59 95 -
uspace/lib/net/il/ip_client.c
r29fa68b re98b1d5 40 40 41 41 #include <ip_client.h> 42 #include <socket_errno.h>43 42 #include <packet/packet.h> 44 43 #include <packet/packet_client.h> -
uspace/lib/net/tl/tl_common.c
r29fa68b re98b1d5 38 38 #include <async.h> 39 39 #include <ipc/services.h> 40 #include <errno.h> 40 41 41 42 #include <net_err.h> … … 51 52 #include <ip_remote.h> 52 53 #include <socket_codes.h> 53 #include <socket_errno.h>54 54 #include <ip_interface.h> 55 55 #include <tl_interface.h> -
uspace/lib/socket/generic/socket_client.c
r29fa68b re98b1d5 42 42 #include <stdint.h> 43 43 #include <stdlib.h> 44 #include <errno.h> 44 45 45 46 #include <ipc/services.h> … … 49 50 #include <in.h> 50 51 #include <socket.h> 51 #include <socket_errno.h>52 52 #include <adt/dynamic_fifo.h> 53 53 #include <adt/int_map.h> -
uspace/lib/socket/generic/socket_core.c
r29fa68b re98b1d5 37 37 #include <stdint.h> 38 38 #include <stdlib.h> 39 #include <errno.h> 39 40 40 41 #include <net_err.h> … … 42 43 #include <inet.h> 43 44 #include <socket_codes.h> 44 #include <socket_errno.h>45 45 #include <adt/dynamic_fifo.h> 46 46 #include <adt/int_map.h> -
uspace/lib/socket/include/socket.h
r29fa68b re98b1d5 45 45 #include <inet.h> 46 46 #include <socket_codes.h> 47 #include < socket_errno.h>47 #include <errno.h> 48 48 49 49 /** @name Socket application programming interface -
uspace/srv/net/il/ip/ip.c
r29fa68b re98b1d5 65 65 #include <tl_interface.h> 66 66 #include <socket_codes.h> 67 #include <socket_errno.h>68 67 #include <adt/measured_strings.h> 69 68 #include <adt/module_map.h> -
uspace/srv/net/tl/icmp/icmp.c
r29fa68b re98b1d5 46 46 #include <sys/time.h> 47 47 #include <sys/types.h> 48 #include <errno.h> 48 49 49 50 #include <net_err.h> … … 66 67 #include <net_interface.h> 67 68 #include <socket_codes.h> 68 #include <socket_errno.h>69 69 #include <tl_messages.h> 70 70 #include <tl_interface.h> -
uspace/srv/net/tl/tcp/tcp.c
r29fa68b re98b1d5 42 42 //TODO remove stdio 43 43 #include <stdio.h> 44 #include <errno.h> 44 45 45 46 #include <ipc/ipc.h> … … 63 64 #include <net_interface.h> 64 65 #include <socket_codes.h> 65 #include <socket_errno.h>66 66 #include <tcp_codes.h> 67 67 #include <socket_core.h> -
uspace/srv/net/tl/udp/udp.c
r29fa68b re98b1d5 42 42 #include <ipc/ipc.h> 43 43 #include <ipc/services.h> 44 #include <errno.h> 44 45 45 46 #include <net_err.h> … … 60 61 #include <net_interface.h> 61 62 #include <socket_codes.h> 62 #include <socket_errno.h>63 63 #include <socket_core.h> 64 64 #include <socket_messages.h>
Note:
See TracChangeset
for help on using the changeset viewer.