summaryrefslogtreecommitdiff
path: root/src/ipcpd/pci.h
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri.staessens@intec.ugent.be>2016-02-26 03:58:37 +0100
committerDimitri Staessens <dimitri.staessens@intec.ugent.be>2016-02-26 03:58:37 +0100
commit4424cf627d0bb45b65128ccfd8f2a7e5739b3917 (patch)
treeb5de29bebc7f5a21eb47aac063c22143d9572962 /src/ipcpd/pci.h
parent93e08315402c586a73fe3b9335e8d669ffc6511a (diff)
downloadouroboros-4424cf627d0bb45b65128ccfd8f2a7e5739b3917.tar.gz
ouroboros-4424cf627d0bb45b65128ccfd8f2a7e5739b3917.zip
ipcps: initial code for pci structure
Diffstat (limited to 'src/ipcpd/pci.h')
-rw-r--r--src/ipcpd/pci.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/ipcpd/pci.h b/src/ipcpd/pci.h
new file mode 100644
index 00000000..936a1b1b
--- /dev/null
+++ b/src/ipcpd/pci.h
@@ -0,0 +1,45 @@
+/*
+ * Ouroboros - Copyright (C) 2016
+ *
+ * Protocol Control Information
+ *
+ * Dimitri Staessens <dimitri.staessens@intec.ugent.be>
+ * Sander Vrijders <sander.vrijders@intec.ugent.be>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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_IPCP_PCI_H
+#define OUROBOROS_IPCP_PCI_H
+#endif
+
+#include "ouroboros/common.h"
+#include "ouroboros/du_buff.h"
+
+struct pci;
+
+typedef struct pci pci_t;
+
+pci_t * pci_create(struct dtp_const * dtc);
+void pci_destroy(pci_t * pci);
+
+int pci_init(pci_t * pci,
+ du_buff_t * dub,
+ struct dtp_const * dtc,
+ struct dup_const * dupc);
+
+int pci_release(du_buff_t dub);
+
+#endif /* OUROBOROS_IPCP_PCI_H */