aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet/util/address.go
blob: 37fb1026c5c175749fbe1e5144ed79cfe77f565e (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
49
50
51
52
53
54
55
56
57
58
59
60
package util

import (
	"encoding/hex"
	"fmt"
	"net"
)

// Address specifies how a peer is reachable on the network.
type Address struct {
	Transport string // transport protocol
	Options   uint32 `order:"big"` // address options
	Address   []byte `size:"*"`    // address data (protocol-dependent)
}

// NewAddress returns a new Address for the given transport and specs
func NewAddress(transport string, addr []byte) *Address {
	a := &Address{
		Transport: transport,
		Options:   0,
		Address:   make([]byte, len(addr)),
	}
	copy(a.Address, addr)
	return a
}

// String returns a human-readable representation of an address.
func (a *Address) String() string {
	return fmt.Sprintf("Address{%s}", AddressString(a.Transport, a.Address))
}

//----------------------------------------------------------------------

// AddressString returns a string representaion of an address.
func AddressString(transport string, addr []byte) string {
	if transport == "tcp" || transport == "udp" {
		alen := len(addr)
		port := uint(addr[alen-2])*256 + uint(addr[alen-1])
		return fmt.Sprintf("%s:%s:%d", transport, net.IP(addr[:alen-2]).String(), port)
	}
	return fmt.Sprintf("%s:%s", transport, hex.EncodeToString(addr))
}

//----------------------------------------------------------------------

// IP address (can be IPv4 or IPv6 or a DNS name)
type IPAddress struct {
	Host []byte `size:"*-2"`
	Port uint16 `order:"big"`
}

// NewIPAddress creates a new instance for a given host and port.
func NewIPAddress(host []byte, port uint16) *IPAddress {
	ip := &IPAddress{
		Host: make([]byte, len(host)),
		Port: port,
	}
	copy(ip.Host, host)
	return ip
}