document and add new server info queries

This commit is contained in:
Jörg Thalheim 2016-01-23 13:38:40 +00:00 committed by root
parent a5c574dd2a
commit a46be915f1
2 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -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)
}
}