-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathsig.go
50 lines (42 loc) · 1.37 KB
/
sig.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
// Copyright 2017 ETH Zurich
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package siginfo
import (
"fmt"
"github.com/scionproto/scion/go/lib/addr"
"github.com/scionproto/scion/go/lib/snet"
)
type Sig struct {
IA addr.IA
Host addr.HostAddr
CtrlL4Port int
EncapL4Port int
}
func (s *Sig) CtrlSnetAddr() *snet.Addr {
l4 := addr.NewL4UDPInfo(uint16(s.CtrlL4Port))
return &snet.Addr{IA: s.IA, Host: &addr.AppAddr{L3: s.Host, L4: l4}}
}
func (s *Sig) EncapSnetAddr() *snet.Addr {
l4 := addr.NewL4UDPInfo(uint16(s.EncapL4Port))
return &snet.Addr{IA: s.IA, Host: &addr.AppAddr{L3: s.Host, L4: l4}}
}
func (s *Sig) Eq(x *Sig) bool {
return s.IA == x.IA &&
s.Host.Eq(x.Host) &&
s.CtrlL4Port == x.CtrlL4Port &&
s.EncapL4Port == x.EncapL4Port
}
func (s *Sig) String() string {
return fmt.Sprintf("%s,[%s]:%d:%d", s.IA, s.Host, s.CtrlL4Port, s.EncapL4Port)
}