diff options
author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-03-03 15:41:11 +0100 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-03-03 15:54:44 +0100 |
commit | a688b8a38d7eb9f42406eeb611717db737b0d257 (patch) | |
tree | 68a2bf098171299d2c30f9537c89b862edb0f996 /src/lib/cdap_req.c | |
parent | d753cab1897e323b59923e2b0b11f550b087351c (diff) | |
download | ouroboros-a688b8a38d7eb9f42406eeb611717db737b0d257.tar.gz ouroboros-a688b8a38d7eb9f42406eeb611717db737b0d257.zip |
lib: Manage multiple flows with a single CDAP instance
You can now add multiple flows to a CDAP instance. This will simplify
sending messages to different peers (e.g. for syncing the RIB). A
request will now return an array of keys terminated by
CDAP_KEY_INVALID. Removes the enum from the CDAP proto file to just
take the opcode as an integer.
Diffstat (limited to 'src/lib/cdap_req.c')
-rw-r--r-- | src/lib/cdap_req.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/cdap_req.c b/src/lib/cdap_req.c index a0348a14..b60e73ad 100644 --- a/src/lib/cdap_req.c +++ b/src/lib/cdap_req.c @@ -30,7 +30,8 @@ #include <stdlib.h> #include <assert.h> -struct cdap_req * cdap_req_create(cdap_key_t key) +struct cdap_req * cdap_req_create(int fd, + cdap_key_t key) { struct cdap_req * creq = malloc(sizeof(*creq)); pthread_condattr_t cattr; @@ -38,10 +39,10 @@ struct cdap_req * cdap_req_create(cdap_key_t key) if (creq == NULL) return NULL; - creq->key = key; + creq->fd = fd; + creq->key = key; creq->state = REQ_INIT; - - creq->response = -1; + creq->response = -1; creq->data.data = NULL; creq->data.len = 0; |