-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathudp.go
77 lines (59 loc) · 1.97 KB
/
udp.go
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
Copyright Liam (liamzebedee) Edwards-Playne 2012
This file is part of QRP.
QRP is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
QRP is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with QRP. If not, see <http://www.gnu.org/licenses/>.
*/
package qrp
// UDP connection implementation
import (
"net"
)
func newUDPConn(network, addr string, mtu int32) (*UDPConn, error) {
udpAddr, err := net.ResolveUDPAddr(network, addr)
if err != nil {
return nil, err
}
conn, err := net.ListenUDP("udp", udpAddr)
if err != nil {
return nil, err
}
udpConn := UDPConn{*conn, mtu}
return &udpConn, nil
}
type UDPConn struct {
net.UDPConn
mtu int32
}
func (conn *UDPConn) ReadNextPacket() (buffer []byte, read int, addr net.Addr, err error) {
// Buffer size is 512 because it's the largest size without possible fragmentation
buffer = make([]byte, conn.mtu)
// Read a packet into the buffer
read, addr, err = conn.ReadFrom(buffer)
return buffer, read, addr, err
}
// Creates a node using UDP, returning an error if failure
func CreateNodeUDP(net, addr string, mtu int32) (*Node, error) {
udpConn, err := newUDPConn(net, addr, mtu)
if err != nil {
return nil, err
}
return CreateNode(udpConn)
}
// Calls a procedure on a node using the UDP protocol
// see Node.Call
func (node *Node) CallUDP(procedure string, addrString string, args interface{}, reply interface{}, timeout int) (err error) {
addr, err := net.ResolveUDPAddr("ip", addrString)
if err != nil {
return err
}
return node.Call(procedure, addr, args, reply, timeout)
}