Changeset e98b1d5 in mainline for uspace/lib
- Timestamp:
- 2010-09-26T11:37:37Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c5b59ce
- Parents:
- 29fa68b
- Location:
- uspace/lib
- Files:
-
- 1 deleted
- 6 edited
-
c/include/errno.h (modified) (1 diff)
-
net/il/ip_client.c (modified) (1 diff)
-
net/tl/tl_common.c (modified) (2 diffs)
-
socket/generic/socket_client.c (modified) (2 diffs)
-
socket/generic/socket_core.c (modified) (2 diffs)
-
socket/include/socket.h (modified) (1 diff)
-
socket/include/socket_errno.h (deleted)
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.
