summaryrefslogtreecommitdiff
path: root/src/conn.go
blob: e23b3506f25b552aeb1046c68a8a85899b6f687b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package main

import (
	"net"
)

func updateUDPConn(device *Device) error {
	netc := &device.net
	netc.mutex.Lock()
	defer netc.mutex.Unlock()

	// close existing connection

	if netc.conn != nil {
		netc.conn.Close()
	}

	// open new connection

	if device.tun.isUp.Get() {

		// listen on new address

		conn, err := net.ListenUDP("udp", netc.addr)
		if err != nil {
			return err
		}

		// retrieve port (may have been chosen by kernel)

		addr := conn.LocalAddr()
		netc.conn = conn
		netc.addr, _ = net.ResolveUDPAddr(addr.Network(), addr.String())
		signalSend(device.signal.newUDPConn)
	}

	return nil
}

func closeUDPConn(device *Device) {
	netc := &device.net
	netc.mutex.Lock()
	if netc.conn != nil {
		netc.conn.Close()
	}
	netc.mutex.Unlock()
	signalSend(device.signal.newUDPConn)
}