Unsettled API - A listener for incoming connections. More...
Typedefs | |
typedef struct pn_listener_t | pn_listener_t |
A listener for incoming connections. | |
Functions | |
PNP_EXTERN pn_listener_t * | pn_listener (void) |
Create a listener to pass to pn_proactor_listen() More... | |
PNP_EXTERN void | pn_listener_free (pn_listener_t *l) |
Free a listener. More... | |
PNP_EXTERN void | pn_listener_accept (pn_listener_t *, pn_connection_t *) |
Bind connection to a new transport accepted from listener . More... | |
PNP_EXTERN pn_condition_t * | pn_listener_condition (pn_listener_t *l) |
Get the error condition for a listener. | |
PNP_EXTERN pn_record_t * | pn_listener_attachments (pn_listener_t *listener) |
Get the attachments that are associated with a listener object. | |
PNP_EXTERN void | pn_listener_close (pn_listener_t *l) |
Close the listener. More... | |
PNP_EXTERN pn_proactor_t * | pn_listener_proactor (pn_listener_t *c) |
The proactor associated with a listener. | |
PNP_EXTERN pn_listener_t * | pn_event_listener (pn_event_t *event) |
Return the listener associated with an event. More... | |
Unsettled API - A listener for incoming connections.
PNP_EXTERN pn_listener_t* pn_listener | ( | void | ) |
Create a listener to pass to pn_proactor_listen()
You can use pn_listener_attachments() to set application data that can be accessed when accepting connections.
PNP_EXTERN void pn_listener_free | ( | pn_listener_t * | l | ) |
Free a listener.
You don't need to call this unless you create a listener with pn_listen() but never pass it to pn_proactor_listen()
PNP_EXTERN void pn_listener_accept | ( | pn_listener_t * | , |
pn_connection_t * | |||
) |
Bind connection
to a new transport accepted from listener
.
Errors are returned as PN_TRANSPORT_CLOSED events by pn_proactor_wait().
PNP_EXTERN void pn_listener_close | ( | pn_listener_t * | l | ) |
Close the listener.
The PN_LISTENER_CLOSE event is generated when the listener has stopped listening.
PNP_EXTERN pn_listener_t* pn_event_listener | ( | pn_event_t * | event | ) |