summaryrefslogtreecommitdiffstats
path: root/vendor/go.mau.fi/libsignal/protocol/SignalProtocolAddress.go
blob: 468a3087139450698b87fa9432e8ff800600fd74 (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
package protocol

import (
	"fmt"
)

const ADDRESS_SEPARATOR = ":"

// NewSignalAddress returns a new signal address.
func NewSignalAddress(name string, deviceID uint32) *SignalAddress {
	addr := SignalAddress{
		name:     name,
		deviceID: deviceID,
	}

	return &addr
}

// SignalAddress is a combination of a name and a device ID.
type SignalAddress struct {
	name     string
	deviceID uint32
}

// Name returns the signal address's name.
func (s *SignalAddress) Name() string {
	return s.name
}

// DeviceID returns the signal address's device ID.
func (s *SignalAddress) DeviceID() uint32 {
	return s.deviceID
}

// String returns a string of both the address name and device id.
func (s *SignalAddress) String() string {
	return fmt.Sprintf("%s%s%d", s.name, ADDRESS_SEPARATOR, s.deviceID)
}