This commit is contained in:
Josh Deprez 2024-03-22 16:18:18 +11:00
parent 19f9d1c891
commit 9b96b58257
No known key found for this signature in database

14
main.go
View file

@ -79,7 +79,7 @@ func main() {
// New peer! // New peer!
tr = &aurp.Transport{ tr = &aurp.Transport{
LocalDI: aurp.IPDomainIdentifier(localIP), LocalDI: aurp.IPDomainIdentifier(localIP),
RemoteDI: dh.SourceDI, RemoteDI: dh.SourceDI, // platinum rule
LocalConnID: nextConnID, LocalConnID: nextConnID,
} }
nextConnID++ nextConnID++
@ -106,11 +106,17 @@ func main() {
// Formulate a response. // Formulate a response.
var rp *aurp.OpenRspPacket var rp *aurp.OpenRspPacket
if p.Version != 1 { switch {
case p.Version != 1:
// Respond with Open-Rsp with unknown version error. // Respond with Open-Rsp with unknown version error.
rp = tr.NewOpenRspPacket(0, aurp.ErrCodeInvalidVersion, nil) 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) rp = tr.NewOpenRspPacket(0, 1, nil)
} }