diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-03 14:40:29 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-03 14:40:29 +0100 |
commit | e2616e184f023da7ce535efb5a676715283c092c (patch) | |
tree | 2a36110cedcaf53933c455a7be00b3f515fcbd82 /src/ipcpd/normal/cdap_flow.h | |
parent | b1b59cc4642faa99514f2288ba1bb5324a79850f (diff) | |
download | ouroboros-e2616e184f023da7ce535efb5a676715283c092c.tar.gz ouroboros-e2616e184f023da7ce535efb5a676715283c092c.zip |
ipcpd: normal: Deprecate CDAP flow
This removes the CDAP flow class, which is no longer needed.
Diffstat (limited to 'src/ipcpd/normal/cdap_flow.h')
-rw-r--r-- | src/ipcpd/normal/cdap_flow.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/ipcpd/normal/cdap_flow.h b/src/ipcpd/normal/cdap_flow.h deleted file mode 100644 index 761f3463..00000000 --- a/src/ipcpd/normal/cdap_flow.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Ouroboros - Copyright (C) 2016 - 2017 - * - * Normal IPC Process - Authenticated CDAP Flow Allocator - * - * Sander Vrijders <sander.vrijders@ugent.be> - * Dimitri Staessens <dimitri.staessens@ugent.be> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - */ - -#ifndef OUROBOROS_IPCPD_NORMAL_CDAP_FLOW_H -#define OUROBOROS_IPCPD_NORMAL_CDAP_FLOW_H - -#include <ouroboros/cacep.h> -#include <ouroboros/cdap.h> -#include <ouroboros/qos.h> - -struct cdap_flow { - int fd; - struct cdap * ci; - struct conn_info info; -}; - -struct cdap_flow * cdap_flow_arr(int fd, - int resp, - const struct conn_info * info); - -struct cdap_flow * cdap_flow_alloc(const char * dst_name, - qosspec_t * qs, - const struct conn_info * info); - -void cdap_flow_dealloc(struct cdap_flow * flow); - -#endif /* OUROBOROS_IPCPD_NORMAL_CDAP_FLOW_H */ |