WIP
This commit is contained in:
parent
19f9d1c891
commit
b35cc1387e
1 changed files with 9 additions and 3 deletions
12
main.go
12
main.go
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue