Rename swift.* files to mptp.*
[swifty.git] / src / kernel / swift.h
diff --git a/src/kernel/swift.h b/src/kernel/swift.h
deleted file mode 100644 (file)
index 59c5b17..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef _MPTP_H
-#define _MPTP_H
-
-#define IPPROTO_MPTP 137
-
-#define MIN_MPTP_PORT 1
-#define MAX_MPTP_PORT 256
-
-#ifndef __KERNEL__
-#include <inttypes.h>
-#endif
-
-struct mptp_dest {
-    uint32_t addr;
-    uint8_t port;
-};
-
-struct sockaddr_mptp {
-    int count;
-    struct mptp_dest dests[0];
-};
-
-#ifdef __KERNEL__
-struct mptphdr {
-       uint8_t src;
-       uint8_t dst;
-       __be16 len;
-};
-#endif
-
-#endif