1QB_IPCS_CREATE(3)          libqb Programmer's Manual         QB_IPCS_CREATE(3)
2
3
4

NAME

6       qb_ipcs_create - Create a new IPC server.
7

SYNOPSIS

9       #include <qb/qbipcs.h>
10
11       qb_ipcs_service_t* qb_ipcs_create(
12           const char                        *name,
13           int32_t                            service_id,
14           enum qb_ipc_type                   type,
15           struct qb_ipcs_service_handlers   *handlers
16       );
17

PARAMS

19       name       for clients to connect to.
20
21       service_id an integer to associate with the service
22
23       type       transport type.
24
25       handlers   callbacks.
26

DESCRIPTION

STRUCTURES

29       struct qb_ipcs_service_handlers {
30           qb_ipcs_connection_accept_fn     connection_accept;
31           qb_ipcs_connection_created_fn    connection_created;
32           qb_ipcs_msg_process_fn           msg_process;
33           qb_ipcs_connection_closed_fn     connection_closed;
34           qb_ipcs_connection_destroyed_fn  connection_destroyed;
35       };
36

RETURN VALUE

38       the new service instance.
39

SEE ALSO

41       qb_ipcs_response_send(3), qb_ipcs_ref(3), qb_ipcs_unref(3),
42       qb_ipcs_connection_auth_set(3), qb_ipcs_service_context_get(3),
43       qb_ipcs_connection_ref(3), qb_ipcs_connection_next_get(3),
44       qb_ipcs_stats_get(3), qb_ipcs_connection_unref(3),
45       qb_ipcs_context_set(3), qb_ipcs_poll_handlers_set(3),
46       qb_ipcs_request_rate_limit(3), qb_ipcs_disconnect(3),
47       qb_ipcs_connection_first_get(3), qb_ipcs_enforce_buffer_size(3),
48       qb_ipcs_destroy(3), qb_ipcs_event_send(3),
49       qb_ipcs_connection_stats_get_2(3), qb_ipcs_service_context_set(3),
50       qb_ipcs_connection_stats_get(3), qb_ipcs_service_id_get(3),
51       qb_ipcs_context_get(3), qb_ipcs_connection_get_buffer_size(3),
52       qb_ipcs_run(3), qb_ipcs_event_sendv(3),
53       qb_ipcs_connection_service_context_get(3), qb_ipcs_response_sendv(3)
54
56       Copyright (C) 2010-2020 Red Hat, Inc. All rights reserved.
57
58
59
60LIBQB                             2020-07-30                 QB_IPCS_CREATE(3)
Impressum