diff options
author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-05-10 16:39:58 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-05-10 17:03:08 +0200 |
commit | c75f20d2ef73b0193e75fa59c4679be713a342c7 (patch) | |
tree | 4ee9635c7a0be3714c7c2f17353e07bc68cf8281 /src/ipcpd/normal/dt_pci.h | |
parent | 40d3fd8cfaf93547428bae51bb34772ead7d32e7 (diff) | |
download | ouroboros-c75f20d2ef73b0193e75fa59c4679be713a342c7.tar.gz ouroboros-c75f20d2ef73b0193e75fa59c4679be713a342c7.zip |
ipcpd: Remove FRCT from normal IPCP
In order to ensure 100% reliable transfer, the protocol state machine
that takes care of retransmission and SDU ordering has to be in the
application. Flow allocation in the normal now uses fds. The PDU_type
field was deprecated and AE's within the DIF can use reserved fds.
Diffstat (limited to 'src/ipcpd/normal/dt_pci.h')
-rw-r--r-- | src/ipcpd/normal/dt_pci.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/ipcpd/normal/dt_pci.h b/src/ipcpd/normal/dt_pci.h index bec21188..280956f4 100644 --- a/src/ipcpd/normal/dt_pci.h +++ b/src/ipcpd/normal/dt_pci.h @@ -26,16 +26,11 @@ #include <ouroboros/shm_du_buff.h> #include <ouroboros/shared.h> -#define PDU_TYPE_FA 0x40 -#define PDU_TYPE_FRCT 0x80 - -#define INVALID_ADDR 0 - struct dt_pci { uint64_t dst_addr; qoscube_t qc; uint8_t ttl; - uint8_t pdu_type; + uint32_t fd; }; int dt_pci_init(void); |