2019-01-02 00:55:51 +00:00
|
|
|
/* SPDX-License-Identifier: MIT
|
2018-05-23 00:10:54 +00:00
|
|
|
*
|
2019-01-02 00:55:51 +00:00
|
|
|
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
|
2018-05-23 00:10:54 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package tun
|
|
|
|
|
2019-02-27 00:06:43 +00:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
)
|
2018-05-23 00:10:54 +00:00
|
|
|
|
2019-06-10 21:33:40 +00:00
|
|
|
type Event int
|
2018-05-23 00:10:54 +00:00
|
|
|
|
|
|
|
const (
|
2019-06-10 21:33:40 +00:00
|
|
|
EventUp = 1 << iota
|
|
|
|
EventDown
|
|
|
|
EventMTUUpdate
|
2018-05-23 00:10:54 +00:00
|
|
|
)
|
|
|
|
|
2019-06-10 21:33:40 +00:00
|
|
|
type Device interface {
|
2018-05-23 00:10:54 +00:00
|
|
|
File() *os.File // returns the file descriptor of the device
|
|
|
|
Read([]byte, int) (int, error) // read a packet from the device (without any additional headers)
|
|
|
|
Write([]byte, int) (int, error) // writes a packet to the device (without any additional headers)
|
2019-03-21 20:43:04 +00:00
|
|
|
Flush() error // flush all previous writes to the device
|
2018-05-23 00:10:54 +00:00
|
|
|
MTU() (int, error) // returns the MTU of the device
|
|
|
|
Name() (string, error) // fetches and returns the current name
|
2019-06-10 21:33:40 +00:00
|
|
|
Events() chan Event // returns a constant channel of events related to the device
|
2018-05-23 00:10:54 +00:00
|
|
|
Close() error // stops the device and closes the event channel
|
|
|
|
}
|