Changes in uspace/lib/c/include/ipc/services.h [1d24ad3:f9b2cb4c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/services.h
r1d24ad3 rf9b2cb4c 38 38 #define LIBC_SERVICES_H_ 39 39 40 #include <fourcc.h> 40 #include <sys/types.h> 41 #include <abi/fourcc.h> 41 42 42 43 typedef enum { 43 44 SERVICE_NONE = 0, 44 SERVICE_LOAD 45 SERVICE_LOADER = FOURCC('l', 'o', 'a', 'd'), 45 46 SERVICE_VFS = FOURCC('v', 'f', 's', ' '), 46 47 SERVICE_LOC = FOURCC('l', 'o', 'c', ' '), … … 49 50 SERVICE_IRC = FOURCC('i', 'r', 'c', ' '), 50 51 SERVICE_CLIPBOARD = FOURCC('c', 'l', 'i', 'p'), 51 SERVICE_UDP = FOURCC('u', 'd', 'p', ' '), 52 SERVICE_TCP = FOURCC('t', 'c', 'p', ' ') 53 } services_t; 52 } service_t; 54 53 55 #define SERVICE_NAME_DNSR "net/dnsr" 56 #define SERVICE_NAME_INET "net/inet" 57 #define SERVICE_NAME_INETCFG "net/inetcfg" 58 #define SERVICE_NAME_INETPING "net/inetping" 59 #define SERVICE_NAME_INETPING6 "net/inetping6" 54 #define SERVICE_NAME_CORECFG "corecfg" 55 #define SERVICE_NAME_DHCP "net/dhcp" 56 #define SERVICE_NAME_DNSR "net/dnsr" 57 #define SERVICE_NAME_INET "net/inet" 58 #define SERVICE_NAME_NETCONF "net/netconf" 59 #define SERVICE_NAME_UDP "net/udp" 60 #define SERVICE_NAME_TCP "net/tcp" 60 61 61 62 #endif
Note:
See TracChangeset
for help on using the changeset viewer.