WIP
This commit is contained in:
parent
19f9d1c891
commit
9b96b58257
1 changed files with 10 additions and 4 deletions
14
main.go
14
main.go
|
@ -79,7 +79,7 @@ func main() {
|
|||
// New peer!
|
||||
tr = &aurp.Transport{
|
||||
LocalDI: aurp.IPDomainIdentifier(localIP),
|
||||
RemoteDI: dh.SourceDI,
|
||||
RemoteDI: dh.SourceDI, // platinum rule
|
||||
LocalConnID: nextConnID,
|
||||
}
|
||||
nextConnID++
|
||||
|
@ -106,11 +106,17 @@ func main() {
|
|||
|
||||
// Formulate a response.
|
||||
var rp *aurp.OpenRspPacket
|
||||
if p.Version != 1 {
|
||||
switch {
|
||||
case p.Version != 1:
|
||||
// Respond with Open-Rsp with unknown version error.
|
||||
rp = tr.NewOpenRspPacket(0, aurp.ErrCodeInvalidVersion, nil)
|
||||
} else {
|
||||
// Accept the connection, I guess?
|
||||
|
||||
case len(p.Options) > 0:
|
||||
// Options? OPTIONS? We don't accept no stinkin' _options_
|
||||
rp = tr.NewOpenRspPacket(0, aurp.ErrCodeOptionNegotiation, nil)
|
||||
|
||||
default:
|
||||
// Accept it I guess.
|
||||
rp = tr.NewOpenRspPacket(0, 1, nil)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue