diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-04-27 19:13:29 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-04-28 13:08:17 +0200 |
commit | 9177b0f3f72203cb6e18ee59c98b531a698d7f19 (patch) | |
tree | 524e72cf30f94613df32f06d5ec7bb9041fd11dc /src/ipcpd/normal/fa.h | |
parent | 1f8f2ebe3bb385593755b69bd264ff5f831a22ae (diff) | |
download | ouroboros-9177b0f3f72203cb6e18ee59c98b531a698d7f19.tar.gz ouroboros-9177b0f3f72203cb6e18ee59c98b531a698d7f19.zip |
ipcpd: normal: Split connection establishment
Connection establishment was done at the same time as flow
allocation. This splits it more cleanly, and allows to re-use the DT
AE for other purposes.
Diffstat (limited to 'src/ipcpd/normal/fa.h')
-rw-r--r-- | src/ipcpd/normal/fa.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ipcpd/normal/fa.h b/src/ipcpd/normal/fa.h index d370a381..6ca705e4 100644 --- a/src/ipcpd/normal/fa.h +++ b/src/ipcpd/normal/fa.h @@ -45,10 +45,9 @@ int fa_alloc_resp(int fd, int fa_dealloc(int fd); -int fa_post_buf(cep_id_t cep_id, - buffer_t * buf); +int fa_post_sdu(struct shm_du_buff * sdb); -int fa_post_sdu(cep_id_t cep_id, - struct shm_du_buff * sdb); +int fa_post_sdu_user(cep_id_t cep_id, + struct shm_du_buff * sdb); #endif /* OUROBOROS_IPCPD_NORMAL_FA_H */ |