summaryrefslogtreecommitdiff
path: root/src/ip.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/ip.go')
-rw-r--r--src/ip.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ip.go b/src/ip.go
deleted file mode 100644
index 752a404..0000000
--- a/src/ip.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package main
-
-import (
- "net"
-)
-
-const (
- IPv4offsetTotalLength = 2
- IPv4offsetSrc = 12
- IPv4offsetDst = IPv4offsetSrc + net.IPv4len
-)
-
-const (
- IPv6offsetPayloadLength = 4
- IPv6offsetSrc = 8
- IPv6offsetDst = IPv6offsetSrc + net.IPv6len
-)