Qpid Proton C API  0.32.0
listener.h
Go to the documentation of this file.
1 #ifndef PROTON_LISTENER_H
2 #define PROTON_LISTENER_H 1
3 
4 /*
5  * Licensed to the Apache Software Foundation (ASF) under one
6  * or more contributor license agreements. See the NOTICE file
7  * distributed with this work for additional information
8  * regarding copyright ownership. The ASF licenses this file
9  * to you under the Apache License, Version 2.0 (the
10  * "License"); you may not use this file except in compliance
11  * with the License. You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing,
16  * software distributed under the License is distributed on an
17  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18  * KIND, either express or implied. See the License for the
19  * specific language governing permissions and limitations
20  * under the License.
21  */
22 
23 #include <proton/import_export.h>
24 #include <proton/types.h>
25 #include <proton/event.h>
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
50 PNP_EXTERN pn_listener_t *pn_listener(void);
51 
56 PNP_EXTERN void pn_listener_free(pn_listener_t *l);
57 
77 PNP_EXTERN void pn_listener_accept2(pn_listener_t *listener, pn_connection_t *connection, pn_transport_t *transport);
78 
82 PNP_EXTERN void pn_listener_accept(pn_listener_t* listener, pn_connection_t *connection);
83 
88 
98 PNP_EXTERN void *pn_listener_get_context(pn_listener_t *listener);
99 
109 PNP_EXTERN void pn_listener_set_context(pn_listener_t *listener, void *context);
110 
114 PNP_EXTERN pn_record_t *pn_listener_attachments(pn_listener_t *listener);
115 
123 PNP_EXTERN void pn_listener_close(pn_listener_t *l);
124 
129 
136 
154 PNP_EXTERN void pn_listener_raw_accept(pn_listener_t *listener, pn_raw_connection_t *raw_connection);
155 
160 #ifdef __cplusplus
161 }
162 #endif
163 
164 #endif /* listener.h */
pn_listener_get_context
PNP_EXTERN void * pn_listener_get_context(pn_listener_t *listener)
Get the application context associated with this listener object.
pn_listener_t
struct pn_listener_t pn_listener_t
A listener for incoming connections.
Definition: types.h:424
pn_event_listener
PNP_EXTERN pn_listener_t * pn_event_listener(pn_event_t *event)
Return the listener associated with an event.
types.h
AMQP and API data types.
pn_event_t
struct pn_event_t pn_event_t
Notification of a state change in the protocol engine.
Definition: event.h:75
pn_listener_accept2
PNP_EXTERN void pn_listener_accept2(pn_listener_t *listener, pn_connection_t *connection, pn_transport_t *transport)
Accept an incoming connection request using transport and connection, which can be configured before ...
pn_transport_t
struct pn_transport_t pn_transport_t
A network channel supporting an AMQP connection.
Definition: types.h:435
pn_listener_proactor
PNP_EXTERN pn_proactor_t * pn_listener_proactor(pn_listener_t *c)
The proactor associated with a listener.
pn_proactor_t
struct pn_proactor_t pn_proactor_t
A harness for multithreaded IO.
Definition: types.h:442
pn_listener_raw_accept
PNP_EXTERN void pn_listener_raw_accept(pn_listener_t *listener, pn_raw_connection_t *raw_connection)
Accept an incoming connection request as a raw connection.
pn_listener_accept
PNP_EXTERN void pn_listener_accept(pn_listener_t *listener, pn_connection_t *connection)
Deprecated - Use pn_listener_accept2().
pn_listener_attachments
PNP_EXTERN pn_record_t * pn_listener_attachments(pn_listener_t *listener)
Get the attachments that are associated with a listener object.
pn_listener_condition
PNP_EXTERN pn_condition_t * pn_listener_condition(pn_listener_t *l)
Get the error condition for a listener.
pn_condition_t
struct pn_condition_t pn_condition_t
An AMQP Condition object.
Definition: condition.h:64
pn_listener_free
PNP_EXTERN void pn_listener_free(pn_listener_t *l)
Free a listener.
event.h
Protocol and transport events.
pn_listener_close
PNP_EXTERN void pn_listener_close(pn_listener_t *l)
Close the listener.
pn_connection_t
struct pn_connection_t pn_connection_t
An AMQP Connection object.
Definition: types.h:285
pn_listener_set_context
PNP_EXTERN void pn_listener_set_context(pn_listener_t *listener, void *context)
Set a new application context for a listener object.
pn_raw_connection_t
struct pn_raw_connection_t pn_raw_connection_t
A raw network connection used with the proactor.
Definition: types.h:449
pn_listener
PNP_EXTERN pn_listener_t * pn_listener(void)
Create a listener to pass to pn_proactor_listen()