From commits-return-45951-archive-asf-public=cust-asf.ponee.io@qpid.apache.org Mon Jul 2 16:27:37 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id AFC6C180674 for ; Mon, 2 Jul 2018 16:27:34 +0200 (CEST) Received: (qmail 6802 invoked by uid 500); 2 Jul 2018 14:27:33 -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 4587 invoked by uid 99); 2 Jul 2018 14:27:32 -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, 02 Jul 2018 14:27:32 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 75364E108F; Mon, 2 Jul 2018 14:27:31 +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, 02 Jul 2018 14:28:06 -0000 Message-Id: <5d11480126ab4cfeb312435657e3a8e3@git.apache.org> In-Reply-To: <41b92f51deb445debdd8ef240b8595bd@git.apache.org> References: <41b92f51deb445debdd8ef240b8595bd@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [37/51] [partial] qpid-site git commit: tidy out some site content for the oldest releases http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fb1899b6/content/releases/qpid-dispatch-0.3/api/container_8h.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-dispatch-0.3/api/container_8h.html b/content/releases/qpid-dispatch-0.3/api/container_8h.html deleted file mode 100644 index 57e2923..0000000 --- a/content/releases/qpid-dispatch-0.3/api/container_8h.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - -Qpid Dispatch Library API: qpid/dispatch/container.h File Reference - - - - - - - - - - - - - -
-
- - - - - - - -
-
Qpid Dispatch Library API -  0.3 -
-
- - - - - - -
-
-
- - - -
-
- -
-
-
- -
- - - - -
- -
- -
- -
-
container.h File Reference
-
-
-
#include <proton/engine.h>
-#include <qpid/dispatch/dispatch.h>
-#include <qpid/dispatch/server.h>
-#include <qpid/dispatch/alloc.h>
-#include <qpid/dispatch/ctools.h>
-
-Include dependency graph for container.h:
-
-
- - -
-
-This graph shows which files directly or indirectly include this file:
-
-
- - -
-
-

Go to the source code of this file.

- - - - - - -

-Classes

struct  qd_node_type_t
 
struct  qd_link_item_t
 
- - - - - - - -

-Macros

#define QD_DIST_COPY   0x01
 
#define QD_DIST_MOVE   0x02
 
#define QD_DIST_BOTH   0x03
 
- - - - - - - - - - - - - - - - - - - - - -

-Typedefs

typedef uint8_t qd_dist_mode_t
 
typedef struct qd_node_t qd_node_t
 
typedef struct qd_link_t qd_link_t
 
typedef struct qd_delivery_t qd_delivery_t
 
typedef void(* qd_container_delivery_handler_t )(void *node_context, qd_link_t *link, qd_delivery_t *delivery)
 
typedef int(* qd_container_link_handler_t )(void *node_context, qd_link_t *link)
 
typedef int(* qd_container_link_detach_handler_t )(void *node_context, qd_link_t *link, int closed)
 
typedef void(* qd_container_node_handler_t )(void *type_context, qd_node_t *node)
 
typedef void(* qd_container_conn_handler_t )(void *type_context, qd_connection_t *conn, void *context)
 
typedef struct qd_link_item_t qd_link_item_t
 
- - - - - -

-Enumerations

enum  qd_lifetime_policy_t {
-  QD_LIFE_PERMANENT, -QD_LIFE_DELETE_CLOSE, -QD_LIFE_DELETE_NO_LINKS, -QD_LIFE_DELETE_NO_MESSAGES, -
-  QD_LIFE_DELETE_NO_LINKS_MESSAGES -
- }
 
enum  qd_direction_t { QD_INCOMING, -QD_OUTGOING - }
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Functions

int qd_container_register_node_type (qd_dispatch_t *dispatch, const qd_node_type_t *nt)
 
qd_node_tqd_container_set_default_node_type (qd_dispatch_t *dispatch, const qd_node_type_t *nt, void *node_context, qd_dist_mode_t supported_dist)
 
qd_node_tqd_container_create_node (qd_dispatch_t *dispatch, const qd_node_type_t *nt, const char *name, void *node_context, qd_dist_mode_t supported_dist, qd_lifetime_policy_t life_policy)
 
void qd_container_destroy_node (qd_node_t *node)
 
void qd_container_node_set_context (qd_node_t *node, void *node_context)
 
qd_dist_mode_t qd_container_node_get_dist_modes (const qd_node_t *node)
 
qd_lifetime_policy_t qd_container_node_get_life_policy (const qd_node_t *node)
 
qd_link_tqd_link (qd_node_t *node, qd_connection_t *conn, qd_direction_t dir, const char *name)
 
void qd_link_free (qd_link_t *link)
 
void qd_link_set_context (qd_link_t *link, void *link_context)
 
void * qd_link_get_context (qd_link_t *link)
 
void qd_link_set_conn_context (qd_link_t *link, void *link_context)
 
void * qd_link_get_conn_context (qd_link_t *link)
 
qd_connection_tqd_link_connection (qd_link_t *link)
 
pn_link_t * qd_link_pn (qd_link_t *link)
 
pn_session_t * qd_link_pn_session (qd_link_t *link)
 
pn_terminus_t * qd_link_source (qd_link_t *link)
 
pn_terminus_t * qd_link_target (qd_link_t *link)
 
pn_terminus_t * qd_link_remote_source (qd_link_t *link)
 
pn_terminus_t * qd_link_remote_target (qd_link_t *link)
 
void qd_link_activate (qd_link_t *link)
 
void qd_link_close (qd_link_t *link)
 
bool qd_link_drain_changed (qd_link_t *link, bool *mode)
 
qd_delivery_tqd_delivery (qd_link_t *link, pn_delivery_tag_t tag)
 
void qd_delivery_free_LH (qd_delivery_t *delivery, uint64_t final_disposition)
 
void qd_delivery_link_peers_LH (qd_delivery_t *left, qd_delivery_t *right)
 
void qd_delivery_unlink_LH (qd_delivery_t *delivery)
 
void qd_delivery_fifo_enter_LH (qd_delivery_t *delivery)
 
bool qd_delivery_fifo_exit_LH (qd_delivery_t *delivery)
 
qd_delivery_tqd_delivery_peer (qd_delivery_t *delivery)
 
void qd_delivery_set_context (qd_delivery_t *delivery, void *context)
 
void * qd_delivery_context (qd_delivery_t *delivery)
 
pn_delivery_t * qd_delivery_pn (qd_delivery_t *delivery)
 
void qd_delivery_settle (qd_delivery_t *delivery)
 
bool qd_delivery_settled (qd_delivery_t *delivery)
 
bool qd_delivery_disp_changed (qd_delivery_t *delivery)
 
uint64_t qd_delivery_disp (qd_delivery_t *delivery)
 
qd_link_tqd_delivery_link (qd_delivery_t *delivery)
 
 ALLOC_DECLARE (qd_link_item_t)
 
 DEQ_DECLARE (qd_link_item_t, qd_link_list_t)
 
-

Detailed Description

-

Container for nodes, links and deliveries.

-
-
- - - - http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fb1899b6/content/releases/qpid-dispatch-0.3/api/container_8h.js ---------------------------------------------------------------------- diff --git a/content/releases/qpid-dispatch-0.3/api/container_8h.js b/content/releases/qpid-dispatch-0.3/api/container_8h.js deleted file mode 100644 index 484f39b..0000000 --- a/content/releases/qpid-dispatch-0.3/api/container_8h.js +++ /dev/null @@ -1,67 +0,0 @@ -var container_8h = -[ - [ "QD_DIST_BOTH", "container_8h.html#gaaaf629a9b77320fbaf7bd2bd290fb996", null ], - [ "QD_DIST_COPY", "container_8h.html#gadcae52b06ae1288f76543aff0e485b6f", null ], - [ "QD_DIST_MOVE", "container_8h.html#gadbc700d67974fb9a363917dc0cafdad7", null ], - [ "qd_container_conn_handler_t", "container_8h.html#ga2a2573561d93fc6d081b30fdb1d3eafe", null ], - [ "qd_container_delivery_handler_t", "container_8h.html#ga976b90317e442ba64cdbab92be13bd53", null ], - [ "qd_container_link_detach_handler_t", "container_8h.html#gaef1ee649c94848dee8071c29f93b4d84", null ], - [ "qd_container_link_handler_t", "container_8h.html#ga2a690fa3ee35a28fa36e53ee22c6e006", null ], - [ "qd_container_node_handler_t", "container_8h.html#gaf223d818cc70e16f812ae6b4e05d5ca5", null ], - [ "qd_delivery_t", "container_8h.html#ga42734cb017f1ba5af285ccb28df0cea6", null ], - [ "qd_dist_mode_t", "container_8h.html#ga2e680520d548e67e2efd6ee95ce377d9", null ], - [ "qd_link_item_t", "container_8h.html#ga30539ae192fa0796ec70bb2e51c16bec", null ], - [ "qd_link_t", "container_8h.html#ga082a4e64f813ba6e3a3587913e5905f2", null ], - [ "qd_node_t", "container_8h.html#gabcd15e2c4befdba7b0857ae224c2aa43", null ], - [ "qd_direction_t", "container_8h.html#gab7d2a7aff97298deeb9e253518cd6693", [ - [ "QD_INCOMING", "container_8h.html#ggab7d2a7aff97298deeb9e253518cd6693a756ea77787f2f8f40f1e455934a84095", null ], - [ "QD_OUTGOING", "container_8h.html#ggab7d2a7aff97298deeb9e253518cd6693a9c88737aa4ad08518a808744b0f6b680", null ] - ] ], - [ "qd_lifetime_policy_t", "container_8h.html#gabb6751c1530343f02b816cd4302497ed", [ - [ "QD_LIFE_PERMANENT", "container_8h.html#ggabb6751c1530343f02b816cd4302497edaa0644a1f757dd6476c0ce7bd5c088a8c", null ], - [ "QD_LIFE_DELETE_CLOSE", "container_8h.html#ggabb6751c1530343f02b816cd4302497eda1b5739b87b25e8f3b96e8e97b2b1ae17", null ], - [ "QD_LIFE_DELETE_NO_LINKS", "container_8h.html#ggabb6751c1530343f02b816cd4302497eda4f1a49cf4fd0d335616f3ca7ccf7d9a5", null ], - [ "QD_LIFE_DELETE_NO_MESSAGES", "container_8h.html#ggabb6751c1530343f02b816cd4302497edaa478496cbadc68c88f5f7860ee6708e7", null ], - [ "QD_LIFE_DELETE_NO_LINKS_MESSAGES", "container_8h.html#ggabb6751c1530343f02b816cd4302497edaebf583e3a6f712850e5f14e32ad3ea25", null ] - ] ], - [ "ALLOC_DECLARE", "container_8h.html#ga560fb0cf0c783c7264ec1d8e5bfac58a", null ], - [ "DEQ_DECLARE", "container_8h.html#ga8bbc3e97e3688a64995d8afd36aa71c9", null ], - [ "qd_container_create_node", "container_8h.html#ga8abfb3c5c5260291de0976fb3e2b06e7", null ], - [ "qd_container_destroy_node", "container_8h.html#gac2a7df1d8de2cff060bafe30df23194b", null ], - [ "qd_container_node_get_dist_modes", "container_8h.html#ga9b1bde2fa7f6512896adc337a4911729", null ], - [ "qd_container_node_get_life_policy", "container_8h.html#ga53e44acbd45be4d056857176b09f4fc4", null ], - [ "qd_container_node_set_context", "container_8h.html#ga6789697e4c71bd5405a048c7e968fec0", null ], - [ "qd_container_register_node_type", "container_8h.html#gaba4fef9d9f3c18452635bccd746584c7", null ], - [ "qd_container_set_default_node_type", "container_8h.html#gaf6572735ee2176e27c753a639e6f2115", null ], - [ "qd_delivery", "container_8h.html#ga7552cd97f105076d5cb4151ade1201dc", null ], - [ "qd_delivery_context", "container_8h.html#ga84de1f5cf2dec5f54836d2f5f5ba0be8", null ], - [ "qd_delivery_disp", "container_8h.html#ga4d001c44c821d3c491f9d7deb127ee27", null ], - [ "qd_delivery_disp_changed", "container_8h.html#ga8938e43afdd1b38275b52c47ecf407ac", null ], - [ "qd_delivery_fifo_enter_LH", "container_8h.html#gab1e782de55547f947ba5091ec3c88838", null ], - [ "qd_delivery_fifo_exit_LH", "container_8h.html#ga1d0a6fd4227f9cbf4055d08b369f9fd2", null ], - [ "qd_delivery_free_LH", "container_8h.html#ga8ea4b2113a62a7cad28bfb2cf923c688", null ], - [ "qd_delivery_link", "container_8h.html#ga96a91625424a924d7ae21aed92a9d356", null ], - [ "qd_delivery_link_peers_LH", "container_8h.html#gaeb08c514c416299d0935056af5eaf27c", null ], - [ "qd_delivery_peer", "container_8h.html#ga0722191bbd72009099b5e5b34188b732", null ], - [ "qd_delivery_pn", "container_8h.html#ga03a4be3d28262e2a2b8eb81e24e44c7c", null ], - [ "qd_delivery_set_context", "container_8h.html#gafe2c3bfc0dcfc34e408fcf5c24d54ac6", null ], - [ "qd_delivery_settle", "container_8h.html#gab5da74dd31607ed6271774f387d98d32", null ], - [ "qd_delivery_settled", "container_8h.html#gaa18a2e4b8ae4c447d55a81a170767d9a", null ], - [ "qd_delivery_unlink_LH", "container_8h.html#ga4931dd18c01c84ca65b0ad2519a7b815", null ], - [ "qd_link", "container_8h.html#gadc12828a690183c6795608e8cfa0f342", null ], - [ "qd_link_activate", "container_8h.html#gaa2da5dfd3583f70fcf24f0bf779a6a0c", null ], - [ "qd_link_close", "container_8h.html#gadc06756ae374214656c143fd040c0fa4", null ], - [ "qd_link_connection", "container_8h.html#ga14ab1004a80cbec826ed452ede0f4778", null ], - [ "qd_link_drain_changed", "container_8h.html#ga760bab1ecea9417ed316cf8ec4918106", null ], - [ "qd_link_free", "container_8h.html#ga19be6fa113b8faaece0b9aefcebd5538", null ], - [ "qd_link_get_conn_context", "container_8h.html#gac867ba88a919fe0fb28219e889241abd", null ], - [ "qd_link_get_context", "container_8h.html#ga260642f1add389116bf874e5d8f2e419", null ], - [ "qd_link_pn", "container_8h.html#gadba402d01dc800cf861d65672e11404c", null ], - [ "qd_link_pn_session", "container_8h.html#ga02b57858186c27228ed142d3383d8b89", null ], - [ "qd_link_remote_source", "container_8h.html#gaafeeba6a67beb7a2d770d2f44025c358", null ], - [ "qd_link_remote_target", "container_8h.html#ga4f328af9707bd3059381e2d918b7bb37", null ], - [ "qd_link_set_conn_context", "container_8h.html#ga2c8b0df90bfbef5ca22f0ef9d3f8ce94", null ], - [ "qd_link_set_context", "container_8h.html#gab8b6be9991b75b18f487be25df217059", null ], - [ "qd_link_source", "container_8h.html#gad0a5d1714489f39d59e4ab0baddf88e3", null ], - [ "qd_link_target", "container_8h.html#gaa43d3d1ebb538cf11fadf42e43fa655b", null ] -]; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fb1899b6/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.map b/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.map deleted file mode 100644 index ede9ce3..0000000 --- a/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fb1899b6/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.md5 b/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.md5 deleted file mode 100644 index 5aa3d0f..0000000 --- a/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -b80ce08fdacd3135dbdcc5c3fd332b91 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fb1899b6/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.png b/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.png deleted file mode 100644 index 4c9d2fe..0000000 Binary files a/content/releases/qpid-dispatch-0.3/api/container_8h__dep__incl.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fb1899b6/content/releases/qpid-dispatch-0.3/api/container_8h__incl.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-dispatch-0.3/api/container_8h__incl.map b/content/releases/qpid-dispatch-0.3/api/container_8h__incl.map deleted file mode 100644 index 3a59c8e..0000000 --- a/content/releases/qpid-dispatch-0.3/api/container_8h__incl.map +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fb1899b6/content/releases/qpid-dispatch-0.3/api/container_8h__incl.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-dispatch-0.3/api/container_8h__incl.md5 b/content/releases/qpid-dispatch-0.3/api/container_8h__incl.md5 deleted file mode 100644 index da176e7..0000000 --- a/content/releases/qpid-dispatch-0.3/api/container_8h__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -b0f10b3603afd5942451d48fc6e29d6c \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/fb1899b6/content/releases/qpid-dispatch-0.3/api/container_8h__incl.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-dispatch-0.3/api/container_8h__incl.png b/content/releases/qpid-dispatch-0.3/api/container_8h__incl.png deleted file mode 100644 index 05e85d7..0000000 Binary files a/content/releases/qpid-dispatch-0.3/api/container_8h__incl.png and /dev/null differ --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org