Added padding

Added plaintext padding and fixed default interface MTU
This commit is contained in:
Mathias Hall-Andersen
2017-07-15 16:27:59 +02:00
parent b21c82e32d
commit dd4da93749
4 changed files with 77 additions and 17 deletions

View File

@@ -1,5 +1,11 @@
package main
/*
* The default MTU of the new device must be 1420
*/
const DefaultMTU = 1420
type TUNDevice interface {
Read([]byte) (int, error) // read a packet from the device (without any additional headers)
Write([]byte) (int, error) // writes a packet to the device (without any additional headers)