wintun: change acronyms to uppercase
Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
parent
3bf41b06ae
commit
7d5f5bcc0d
@ -48,7 +48,7 @@ type NativeTun struct {
|
|||||||
wrBuff *exchgBufWrite
|
wrBuff *exchgBufWrite
|
||||||
events chan TUNEvent
|
events chan TUNEvent
|
||||||
errors chan error
|
errors chan error
|
||||||
forcedMtu int
|
forcedMTU int
|
||||||
}
|
}
|
||||||
|
|
||||||
func packetAlign(size uint32) uint32 {
|
func packetAlign(size uint32) uint32 {
|
||||||
@ -97,7 +97,7 @@ func CreateTUN(ifname string) (TUNDevice, error) {
|
|||||||
wrBuff: &exchgBufWrite{},
|
wrBuff: &exchgBufWrite{},
|
||||||
events: make(chan TUNEvent, 10),
|
events: make(chan TUNEvent, 10),
|
||||||
errors: make(chan error, 1),
|
errors: make(chan error, 1),
|
||||||
forcedMtu: 1500,
|
forcedMTU: 1500,
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -221,12 +221,12 @@ func (tun *NativeTun) Close() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (tun *NativeTun) MTU() (int, error) {
|
func (tun *NativeTun) MTU() (int, error) {
|
||||||
return tun.forcedMtu, nil
|
return tun.forcedMTU, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO: This is a temporary hack. We really need to be monitoring the interface in real time and adapting to MTU changes.
|
//TODO: This is a temporary hack. We really need to be monitoring the interface in real time and adapting to MTU changes.
|
||||||
func (tun *NativeTun) ForceMtu(mtu int) {
|
func (tun *NativeTun) ForceMTU(mtu int) {
|
||||||
tun.forcedMtu = mtu
|
tun.forcedMTU = mtu
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tun *NativeTun) Read(buff []byte, offset int) (int, error) {
|
func (tun *NativeTun) Read(buff []byte, offset int) (int, error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user