diff options
author | Dimitri Staessens <[email protected]> | 2021-03-26 12:32:06 +0100 |
---|---|---|
committer | Sander Vrijders <[email protected]> | 2021-03-28 12:46:05 +0200 |
commit | 994465e34a732db3bce542ee021674473f32d572 (patch) | |
tree | ec8c6f0bead35c28019da5690e11306de0e3671d /src/tools/irm/irm_ipcp_create.c | |
parent | 14d20740bb1c842c1b548dfec752557f5f8f58ab (diff) | |
download | ouroboros-994465e34a732db3bce542ee021674473f32d572.tar.gz ouroboros-994465e34a732db3bce542ee021674473f32d572.zip |
build: Remove raptor IPCP
This removes the raptor IPCP. The code hasn't been updated for a
while, and wouldn't compile. Raptor served its purpose as a PoC for
Ouroboros-over-Ethernet-Layer-1, but giving the extreme niche hardware
needed to run it, it's not worth maintaining this anymore.
Signed-off-by: Dimitri Staessens <[email protected]>
Signed-off-by: Sander Vrijders <[email protected]>
Diffstat (limited to 'src/tools/irm/irm_ipcp_create.c')
-rw-r--r-- | src/tools/irm/irm_ipcp_create.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/tools/irm/irm_ipcp_create.c b/src/tools/irm/irm_ipcp_create.c index 3373b058..586cdf85 100644 --- a/src/tools/irm/irm_ipcp_create.c +++ b/src/tools/irm/irm_ipcp_create.c @@ -50,7 +50,6 @@ #define ETH_LLC "eth-llc" #define ETH_DIX "eth-dix" #define LOCAL "local" -#define RAPTOR "raptor" static void usage(void) { @@ -58,7 +57,7 @@ static void usage(void) " name <ipcp name>\n" " type [TYPE]\n\n" "where TYPE = {" UNICAST " " BROADCAST " " LOCAL " " - UDP " " ETH_LLC " " RAPTOR "}\n"); + UDP " " ETH_LLC "}\n"); } int do_create_ipcp(int argc, @@ -101,8 +100,6 @@ int do_create_ipcp(int argc, type = IPCP_ETH_LLC; else if (strcmp(ipcp_type, ETH_DIX) == 0) type = IPCP_ETH_DIX; - else if (strcmp(ipcp_type, RAPTOR) == 0) - type = IPCP_RAPTOR; else { usage(); return -1; |