Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ipc/loc.h

    rf9b2cb4c ra3fcfba  
    7676} loc_event_t;
    7777
     78/** Ports provided by location service.
     79 *
     80 * Every process that connects to loc must ask one of following
     81 * ports, otherwise connection will be refused.
     82 *
     83 */
     84typedef enum {
     85        /** Service supplier (server) port */
     86        LOC_PORT_SUPPLIER = 1,
     87        /** Service consumer (client) port */
     88        LOC_PORT_CONSUMER,
     89        /** Create new connection to instance of device that
     90            is specified by second argument of call. */
     91        LOC_CONNECT_TO_SERVICE
     92} loc_interface_t;
     93
    7894typedef struct {
    7995        service_id_t id;
Note: See TracChangeset for help on using the changeset viewer.