document and add new server info queries
This commit is contained in:
parent
a5c574dd2a
commit
a46be915f1
@ -58,6 +58,9 @@ it run as user nobody, who cannot bind to port 43 itself.
|
||||
- as-set: `$ whois -h <server> 4242420000_4242423999`
|
||||
- as-block: `$ whois -h <server> AS-FREIFUNK`
|
||||
- route-set: `$ whois -h <server> RS-DN42-NATIVE`
|
||||
- version: `$ whois -h <server> -q version`
|
||||
- sources: `$ whois -h <server> -q sources`
|
||||
- types: `$ whois -h <server> -q types`
|
||||
|
||||
|
||||
## TODO
|
||||
|
@ -84,7 +84,7 @@ func (r *Registry) HandleQuery(conn *net.TCPConn) {
|
||||
|
||||
flags := query.Flags
|
||||
if flags.ServerInfo != "" {
|
||||
r.printServerInfo(conn, flags.ServerInfo)
|
||||
r.printServerInfo(conn, strings.TrimSpace(flags.ServerInfo))
|
||||
return
|
||||
}
|
||||
found := false
|
||||
@ -187,7 +187,7 @@ func (r *Registry) printServerInfo(conn *net.TCPConn, what string) {
|
||||
fmt.Fprintf(conn, "%s\n", t.Name)
|
||||
}
|
||||
default:
|
||||
fmt.Fprintf(conn, "% unknown option %s\n", what)
|
||||
fmt.Fprintf(conn, "%% unknown option %s\n", what)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user