Add meaningful message for services that are not yet implemented.
This commit is contained in:
parent
b678777f06
commit
3690c8ec95
1 changed files with 3 additions and 3 deletions
|
@ -53,7 +53,7 @@ class TCPHandler(socketserver.StreamRequestHandler):
|
|||
elif command in ("heartbeat", "hb", "ping"):
|
||||
return "OK: Still here? Wow."
|
||||
elif command in ("stat", "status"):
|
||||
return False
|
||||
return "UA: Not currently implemented."
|
||||
elif command in ("ssl", "tls"):
|
||||
try:
|
||||
if listIncluded(str(content[1]), SSL):
|
||||
|
@ -69,11 +69,11 @@ class TCPHandler(socketserver.StreamRequestHandler):
|
|||
except:
|
||||
return "ER: Could not verify SSL certificate on %s:%i. Is the server down?" % (content[1], content[2])
|
||||
elif command == "port":
|
||||
return False
|
||||
return "UA: Not currently implemented."
|
||||
elif command in ("req", "request"):
|
||||
return "NI: Requesting monitoring is not yet implemented."
|
||||
elif command == "help":
|
||||
return False
|
||||
return "UA: Not currently implemented."
|
||||
else:
|
||||
return "IM: Unknown command %s." % command
|
||||
# except TypeError:
|
||||
|
|
Loading…
Reference in a new issue