Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/errno.h

    rfab2746 rd4d74dc  
    6868#define ENAK (-303)
    6969
     70/** An API function is called while another blocking function is in progress. */
     71#define EINPROGRESS  (-10036)
     72
     73/** The socket identifier is not valid. */
     74#define ENOTSOCK  (-10038)
     75
     76/** The destination address required. */
     77#define EDESTADDRREQ  (-10039)
     78
     79/** Protocol is not supported.  */
     80#define EPROTONOSUPPORT  (-10043)
     81
     82/** Socket type is not supported. */
     83#define ESOCKTNOSUPPORT  (-10044)
     84
     85/** Protocol family is not supported. */
     86#define EPFNOSUPPORT  (-10046)
     87
     88/** Address family is not supported. */
     89#define EAFNOSUPPORT  (-10047)
     90
     91/** Address is already in use. */
     92#define EADDRINUSE  (-10048)
     93
     94/** The socket is not connected or bound. */
     95#define ENOTCONN  (-10057)
     96
     97#define ECONNREFUSED  (-10058)
     98
     99#define ECONNABORTED  (-10059)
     100
    70101/** The requested operation was not performed. Try again later. */
    71102#define EAGAIN  (-11002)
     103
     104/** No data. */
     105#define NO_DATA (-11004)
    72106
    73107#endif
Note: See TracChangeset for help on using the changeset viewer.