Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D1561200D36 for ; Mon, 6 Nov 2017 16:30:08 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id CFA6E160BFF; Mon, 6 Nov 2017 15:30:08 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1CF89160C14 for ; Mon, 6 Nov 2017 16:30:05 +0100 (CET) Received: (qmail 50340 invoked by uid 500); 6 Nov 2017 15:30:05 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 50094 invoked by uid 99); 6 Nov 2017 15:30:05 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Nov 2017 15:30:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 96B18DFE15; Mon, 6 Nov 2017 15:30:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: robbie@apache.org To: commits@qpid.apache.org Date: Mon, 06 Nov 2017 15:30:44 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [42/51] [abbrv] [partial] qpid-site git commit: PROTON-1668: update the site for proton-0.18.1 archived-at: Mon, 06 Nov 2017 15:30:09 -0000 http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fc9ec1f7/content/releases/qpid-proton-0.18.1/proton/c/api/error_8h_source.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-0.18.1/proton/c/api/error_8h_source.html b/content/releases/qpid-proton-0.18.1/proton/c/api/error_8h_source.html new file mode 100755 index 0000000..727d48f --- /dev/null +++ b/content/releases/qpid-proton-0.18.1/proton/c/api/error_8h_source.html @@ -0,0 +1,118 @@ + + + + + + + +Qpid Proton C API: proton/error.h Source File + + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
Qpid Proton C API +  0.18.1 +
+
+ + + + + + +
+
+
+ + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
error.h
+
+
+Go to the documentation of this file.
1 #ifndef PROTON_ERROR_H
2 #define PROTON_ERROR_H 1
3 
4 /*
5  *
6  * Licensed to the Apache Software Foundation (ASF) under one
7  * or more contributor license agreement s. See the NOTICE file
8  * distributed with this work for additional information
9  * regarding copyright ownership. The ASF licenses this file
10  * to you under the Apache License, Version 2.0 (the
11  * "License"); you may not use this file except in compliance
12  * with the License. You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing,
17  * software distributed under the License is distributed on an
18  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19  * KIND, either express or implied. See the License for the
20  * specific language governing permissions and limitations
21  * under the License.
22  *
23  */
24 
25 #include <proton/import_export.h>
26 #include <stdarg.h>
27  ;
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
44 typedef struct pn_error_t pn_error_t;
45 
46 #define PN_OK (0)
47 #define PN_EOS (-1)
48 #define PN_ERR (-2)
49 #define PN_OVERFLOW (-3)
50 #define PN_UNDERFLOW (-4)
51 #define PN_STATE_ERR (-5)
52 #define PN_ARG_ERR (-6)
53 #define PN_TIMEOUT (-7)
54 #define PN_INTR (-8)
55 #define PN_INPROGRESS (-9)
56 #define PN_OUT_OF_MEMORY (-10)
57 #define PN_ABORTED (-11)
63 PN_EXTERN const char *pn_code(int code);
64 
68 PN_EXTERN pn_error_t *pn_error(void);
69 
73 PN_EXTERN void pn_error_free(pn_error_t *error);
74 
78 PN_EXTERN void pn_error_clear(pn_error_t *error);
79 
83 PN_EXTERN int pn_error_set(pn_error_t *error, int code, const char *text);
84 
89 PN_EXTERN int pn_error_vformat (pn_error_t *error, int code, const char *fmt, va_list ap);
90 
95 PN_EXTERN int pn_error_format(pn_error_t *error, int code, const char *fmt, ...);
96 
100 PN_EXTERN int pn_error_code(pn_error_t *error);
101 
106 PN_EXTERN const char *pn_error_text(pn_error_t *error);
107 
111 PN_EXTERN int pn_error_copy(pn_error_t *error, pn_error_t *src);
112 
116 #define PN_RETURN_IF_ERROR(x) \
117 do {\
118 int r = (x);\
119 if (r < 0) return r; \
120 } while (0)
121 
129 #ifdef __cplusplus
130 }
131 #endif
132 
133 #endif /* error.h */
int pn_error_copy(pn_error_t *error, pn_error_t *src)
Copy the src error.
+
int pn_error_set(pn_error_t *error, int code, const char *text)
Set the error code and text.
+
struct pn_error_t pn_error_t
An int error code and some string text to describe the error.
Definition: error.h:44
+
int pn_error_code(pn_error_t *error)
Get the the error code.
+
pn_error_t * pn_error(void)
Create an error object.
+
void pn_error_clear(pn_error_t *error)
Reset the error to a "no error" state with code == 0.
+
int pn_error_format(pn_error_t *error, int code, const char *fmt,...)
Set the code and set the text using a printf-style formatted string.
+
void pn_error_free(pn_error_t *error)
Free an error object.
+
int pn_error_vformat(pn_error_t *error, int code, const char *fmt, va_list ap)
Set the code and set the text using a printf-style formatted string.
+
const char * pn_error_text(pn_error_t *error)
Get the error text.
+
+
+ + + + http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fc9ec1f7/content/releases/qpid-proton-0.18.1/proton/c/api/event_8h.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-0.18.1/proton/c/api/event_8h.html b/content/releases/qpid-proton-0.18.1/proton/c/api/event_8h.html new file mode 100755 index 0000000..f2023c6 --- /dev/null +++ b/content/releases/qpid-proton-0.18.1/proton/c/api/event_8h.html @@ -0,0 +1,272 @@ + + + + + + + +Qpid Proton C API: proton/event.h File Reference + + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
Qpid Proton C API +  0.18.1 +
+
+ + + + + + +
+
+
+ + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
event.h File Reference
+
+
+ +

Protocol and transport events. +More...

+
#include <proton/import_export.h>
+#include <proton/type_compat.h>
+#include <proton/object.h>
+#include <stddef.h>
+
+

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef struct pn_event_t pn_event_t
 Notification of a state change in the protocol engine. More...
 
typedef struct pn_event_batch_t pn_event_batch_t
 Unsettled API - A batch of events that must be handled in sequence. More...
 
+ + + + +

+Enumerations

enum  pn_event_type_t {
+  PN_EVENT_NONE, +PN_REACTOR_INIT, +PN_REACTOR_QUIESCED, +PN_REACTOR_FINAL, +
+  PN_TIMER_TASK, +PN_CONNECTION_INIT, +PN_CONNECTION_BOUND, +PN_CONNECTION_UNBOUND, +
+  PN_CONNECTION_LOCAL_OPEN, +PN_CONNECTION_REMOTE_OPEN, +PN_CONNECTION_LOCAL_CLOSE, +PN_CONNECTION_REMOTE_CLOSE, +
+  PN_CONNECTION_FINAL, +PN_SESSION_INIT, +PN_SESSION_LOCAL_OPEN, +PN_SESSION_REMOTE_OPEN, +
+  PN_SESSION_LOCAL_CLOSE, +PN_SESSION_REMOTE_CLOSE, +PN_SESSION_FINAL, +PN_LINK_INIT, +
+  PN_LINK_LOCAL_OPEN, +PN_LINK_REMOTE_OPEN, +PN_LINK_LOCAL_CLOSE, +PN_LINK_REMOTE_CLOSE, +
+  PN_LINK_LOCAL_DETACH, +PN_LINK_REMOTE_DETACH, +PN_LINK_FLOW, +PN_LINK_FINAL, +
+  PN_DELIVERY, +PN_TRANSPORT, +PN_TRANSPORT_AUTHENTICATED, +PN_TRANSPORT_ERROR, +
+  PN_TRANSPORT_HEAD_CLOSED, +PN_TRANSPORT_TAIL_CLOSED, +PN_TRANSPORT_CLOSED, +PN_SELECTABLE_INIT, +
+  PN_SELECTABLE_UPDATED, +PN_SELECTABLE_READABLE, +PN_SELECTABLE_WRITABLE, +PN_SELECTABLE_ERROR, +
+  PN_SELECTABLE_EXPIRED, +PN_SELECTABLE_FINAL, +PN_CONNECTION_WAKE, +PN_LISTENER_ACCEPT, +
+  PN_LISTENER_CLOSE, +PN_PROACTOR_INTERRUPT, +PN_PROACTOR_TIMEOUT, +PN_PROACTOR_INACTIVE, +
+  PN_LISTENER_OPEN +
+ }
 An event type. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

const char * pn_event_type_name (pn_event_type_t type)
 Get a human readable name for an event type. More...
 
pn_collector_tpn_collector (void)
 Construct a collector. More...
 
void pn_collector_free (pn_collector_t *collector)
 Free a collector. More...
 
void pn_collector_release (pn_collector_t *collector)
 Release a collector. More...
 
void pn_collector_drain (pn_collector_t *collector)
 Drain a collector: remove and discard all events. More...
 
pn_event_tpn_collector_put (pn_collector_t *collector, const pn_class_t *clazz, void *context, pn_event_type_t type)
 Place a new event on a collector. More...
 
pn_event_tpn_collector_peek (pn_collector_t *collector)
 Access the head event contained by a collector. More...
 
bool pn_collector_pop (pn_collector_t *collector)
 Remove the head event on a collector. More...
 
pn_event_tpn_collector_next (pn_collector_t *collector)
 Pop and return the head event, returns NULL if the collector is empty. More...
 
pn_event_tpn_collector_prev (pn_collector_t *collector)
 Return the same pointer as the most recent call to pn_collector_next(). More...
 
bool pn_collector_more (pn_collector_t *collector)
 Check if there are more events after the current head event. More...
 
pn_event_type_t pn_event_type (pn_event_t *event)
 Get the type of an event. More...
 
const pn_class_t * pn_event_class (pn_event_t *event)
 Get the class associated with the event context. More...
 
+void * pn_event_context (pn_event_t *event)
 Get the context associated with an event.
 
pn_connection_tpn_event_connection (pn_event_t *event)
 Get the connection associated with an event. More...
 
pn_session_tpn_event_session (pn_event_t *event)
 Get the session associated with an event. More...
 
pn_link_tpn_event_link (pn_event_t *event)
 Get the link associated with an event. More...
 
pn_delivery_tpn_event_delivery (pn_event_t *event)
 Get the delivery associated with an event. More...
 
pn_transport_tpn_event_transport (pn_event_t *event)
 Get the transport associated with an event. More...
 
pn_record_t * pn_event_attachments (pn_event_t *event)
 Get any attachments associated with an event. More...
 
struct pn_condition_tpn_event_condition (pn_event_t *event)
 If the event context object has a condition and the condition is set return it, otherwise return NULL. More...
 
pn_event_tpn_event_batch_next (pn_event_batch_t *batch)
 Unsettled API - Remove the next event from the batch and return it. More...
 
+

Detailed Description

+

Protocol and transport events.

+
+
+ + + + http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fc9ec1f7/content/releases/qpid-proton-0.18.1/proton/c/api/event_8h.js ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-0.18.1/proton/c/api/event_8h.js b/content/releases/qpid-proton-0.18.1/proton/c/api/event_8h.js new file mode 100755 index 0000000..316dd25 --- /dev/null +++ b/content/releases/qpid-proton-0.18.1/proton/c/api/event_8h.js @@ -0,0 +1,78 @@ +var event_8h = +[ + [ "pn_event_t", "group__event.html#ga87f3028b4888632bbd56fb71ac737ae8", null ], + [ "pn_event_batch_t", "group__event.html#ga6bc581dfeaa8e8d46d07d37229d565c9", null ], + [ "pn_event_type_t", "group__event.html#ga4876e2eed24a4d4e4c52b99842103cda", [ + [ "PN_EVENT_NONE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa1f5eec218463ae8e4f962fcc8eb2e657", null ], + [ "PN_REACTOR_INIT", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa95e9355638399ee20a697f3f494ab7db", null ], + [ "PN_REACTOR_QUIESCED", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa5548649935a6aab6e6547c9036f685ff", null ], + [ "PN_REACTOR_FINAL", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaad164b6566815866ed2c1d981e02bacb0", null ], + [ "PN_TIMER_TASK", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa13fdcb0402f982fd366e58f165f376c9", null ], + [ "PN_CONNECTION_INIT", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa182e571a0310028514bce66a41063a6e", null ], + [ "PN_CONNECTION_BOUND", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaaf61aa79ca82b3a8f5017dc735843fae5", null ], + [ "PN_CONNECTION_UNBOUND", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaac683ba544c12cbf36a3d3015ae818498", null ], + [ "PN_CONNECTION_LOCAL_OPEN", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa5d285c46982df224c3e4733b05c3540a", null ], + [ "PN_CONNECTION_REMOTE_OPEN", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaad48bce685db553740fa71cc36473b5cc", null ], + [ "PN_CONNECTION_LOCAL_CLOSE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaac8567664d41057ae94d23776f5ecdb86", null ], + [ "PN_CONNECTION_REMOTE_CLOSE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa1252529cf9f03d214c9b4fea5cf11b2f", null ], + [ "PN_CONNECTION_FINAL", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa6c7d6b4e5f1e4f47fa80dae1ad686e0b", null ], + [ "PN_SESSION_INIT", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaaf5b92fb6331bfe63786db3950073147f", null ], + [ "PN_SESSION_LOCAL_OPEN", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa0862b8e3613b7a2b5a08a779474df424", null ], + [ "PN_SESSION_REMOTE_OPEN", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaaf67df046bea45df34aea863d9541e806", null ], + [ "PN_SESSION_LOCAL_CLOSE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa5d3fe92cc7ef0e8712b038ecfbd05029", null ], + [ "PN_SESSION_REMOTE_CLOSE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa3410075b825c59b8f4efdcddf5a5b135", null ], + [ "PN_SESSION_FINAL", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaaf5eb59f4d99ef5a8efd48be64a2bd8f8", null ], + [ "PN_LINK_INIT", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa2f9e46bded95d0233cc74a71fdc75a2c", null ], + [ "PN_LINK_LOCAL_OPEN", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa5ddecd4b0ea72895413fbf1b5cb41f65", null ], + [ "PN_LINK_REMOTE_OPEN", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa45edb44a6cc7908b5032944e08925307", null ], + [ "PN_LINK_LOCAL_CLOSE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa3b27f8d1c91cc05b47bed1905d42373a", null ], + [ "PN_LINK_REMOTE_CLOSE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa1153f0108be071c31210dd1cd3e40a1f", null ], + [ "PN_LINK_LOCAL_DETACH", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa838b909cce908f5769d043ba3e73e73e", null ], + [ "PN_LINK_REMOTE_DETACH", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa5a84b68a2bd5ca705187381a785121d2", null ], + [ "PN_LINK_FLOW", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa4eaecc54c07cdc9b0df7b1d536a7dc3f", null ], + [ "PN_LINK_FINAL", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaaeacdc45bfe24b2a9da2aeed7b6effac5", null ], + [ "PN_DELIVERY", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa70bbfc163d85732b5652dc70fb3330fe", null ], + [ "PN_TRANSPORT", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaad7329eb7a015f62ce70719ea20abab76", null ], + [ "PN_TRANSPORT_AUTHENTICATED", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaaa205271edd307e5d33bd8287a760ad28", null ], + [ "PN_TRANSPORT_ERROR", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa7c7278de5bcbf3b42b3e692ca21f6c5a", null ], + [ "PN_TRANSPORT_HEAD_CLOSED", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa98facd13835b4a1d8e878d6f13c10a51", null ], + [ "PN_TRANSPORT_TAIL_CLOSED", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa205d07df6cd3d07b37a89f046b1184db", null ], + [ "PN_TRANSPORT_CLOSED", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa1ca722ce3c0b2c13a33636cded8430ba", null ], + [ "PN_SELECTABLE_INIT", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa74f3d7501f7d57e620e9d826293c47ee", null ], + [ "PN_SELECTABLE_UPDATED", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa2db304137f1cbb89baed3ff87ab43b9c", null ], + [ "PN_SELECTABLE_READABLE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa12d77930d6fc716f286f1fc1da17b718", null ], + [ "PN_SELECTABLE_WRITABLE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa6dd63225befbc388ca529f5f4cf6d2b9", null ], + [ "PN_SELECTABLE_ERROR", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa5258331573513f2672922763ee41b24f", null ], + [ "PN_SELECTABLE_EXPIRED", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaade231050bf30430bf4f2c111f5564ee0", null ], + [ "PN_SELECTABLE_FINAL", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa45de34c8f4fdb4c8b1f713d7b17b4ca1", null ], + [ "PN_CONNECTION_WAKE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa28a2bfee806bbc1fe31499c8eec39db0", null ], + [ "PN_LISTENER_ACCEPT", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa0602b15957883e7d00ccdff4abca992c", null ], + [ "PN_LISTENER_CLOSE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaad5920df168cd28daaf253cad789d8aca", null ], + [ "PN_PROACTOR_INTERRUPT", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaaee05826a80e94b5b86c4544e4715f499", null ], + [ "PN_PROACTOR_TIMEOUT", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa4afa8c2da61f4c665c669fbe37b1c5fe", null ], + [ "PN_PROACTOR_INACTIVE", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa894e93f167ef39e28a07c9cdf6b1181b", null ], + [ "PN_LISTENER_OPEN", "group__event.html#gga4876e2eed24a4d4e4c52b99842103cdaa6e25f00110ab278fd8b34fee00bd5fd7", null ] + ] ], + [ "pn_event_type_name", "group__event.html#ga3a85c046c11ce692c23b9566b022d54b", null ], + [ "pn_collector", "group__event.html#ga7c7754316e257d4ce7660730953000ac", null ], + [ "pn_collector_free", "group__event.html#ga2312e5cb8fc9e4bff94d7ab9d4b15c08", null ], + [ "pn_collector_release", "group__event.html#ga04e6edffd24e5c865ac1f6b3529469e4", null ], + [ "pn_collector_drain", "group__event.html#gadab22668a28ff1af0d8ef82df516f94f", null ], + [ "pn_collector_put", "group__event.html#ga1857c64d3f8549209b0b8ec91bf81e89", null ], + [ "pn_collector_peek", "group__event.html#ga672d5ec725787815cae9b7bc739cd6f9", null ], + [ "pn_collector_pop", "group__event.html#ga7a4a24eb162059737f44e7520a0c1a54", null ], + [ "pn_collector_next", "group__event.html#ga554801c4fb87ae7518772a4492f307e0", null ], + [ "pn_collector_prev", "group__event.html#ga9304e9c2e85cb5de23c81ae7cd8a9077", null ], + [ "pn_collector_more", "group__event.html#gabf731be5b6c0d15173fd4d9a3b132121", null ], + [ "pn_event_type", "group__event.html#gacaea54ca51885933b4987c131a3d1b0d", null ], + [ "pn_event_class", "group__event.html#ga1f3f0a01db5cce634c5d0ccd5d9b50be", null ], + [ "pn_event_context", "group__event.html#gaecda1dea7e3a01c4ba246043ea438b19", null ], + [ "pn_event_connection", "group__event.html#ga4f2c6a0fdf86a43e7e9874fcd2ccaf52", null ], + [ "pn_event_session", "group__event.html#gaf4af0bfbe0e0a8e432f0e803df14ecb5", null ], + [ "pn_event_link", "group__event.html#ga75f230ef55f03a1f943df79279f8d111", null ], + [ "pn_event_delivery", "group__event.html#ga10fa6f53bdabe0851ebb2d8a0bf6a52c", null ], + [ "pn_event_transport", "group__event.html#ga14525ae84870388141898bbf57f2b151", null ], + [ "pn_event_attachments", "group__event.html#ga5989cf0c187bd12899596fe06931476e", null ], + [ "pn_event_condition", "group__event.html#gae7beda7f373660b889b61412ce429028", null ], + [ "pn_event_batch_next", "group__event.html#gac3fbf151357d3101ac294cb675348c76", null ] +]; \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org