diff options
author | Mattes D <github@xoft.cz> | 2015-02-20 14:28:05 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-02-20 14:28:05 +0100 |
commit | 9c5162041e6e0699283862b87e2e424bf8e3b8b8 (patch) | |
tree | 3beed26a11a3fb35b79b444f2380f6b93dc2f3a7 /MCServer/Plugins/NetworkTest/Info.lua | |
parent | NetworkSingleton: LibEvent thread is joined properly on server exit. (diff) | |
download | cuberite-9c5162041e6e0699283862b87e2e424bf8e3b8b8.tar cuberite-9c5162041e6e0699283862b87e2e424bf8e3b8b8.tar.gz cuberite-9c5162041e6e0699283862b87e2e424bf8e3b8b8.tar.bz2 cuberite-9c5162041e6e0699283862b87e2e424bf8e3b8b8.tar.lz cuberite-9c5162041e6e0699283862b87e2e424bf8e3b8b8.tar.xz cuberite-9c5162041e6e0699283862b87e2e424bf8e3b8b8.tar.zst cuberite-9c5162041e6e0699283862b87e2e424bf8e3b8b8.zip |
Diffstat (limited to 'MCServer/Plugins/NetworkTest/Info.lua')
-rw-r--r-- | MCServer/Plugins/NetworkTest/Info.lua | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/MCServer/Plugins/NetworkTest/Info.lua b/MCServer/Plugins/NetworkTest/Info.lua index c3c2ea8fc..52422d427 100644 --- a/MCServer/Plugins/NetworkTest/Info.lua +++ b/MCServer/Plugins/NetworkTest/Info.lua @@ -84,6 +84,48 @@ g_PluginInfo = }, }, -- lookup + udp = + { + Subcommands = + { + close = + { + Handler = HandleConsoleNetUdpClose, + ParameterCombinations = + { + { + Params = "[Port]", + Help = "Closes the UDP endpoint on the specified port [1024].", + } + }, + }, -- close + + listen = + { + Handler = HandleConsoleNetUdpListen, + ParameterCombinations = + { + { + Params = "[Port]", + Help = "Listens on the specified UDP port [1024], dumping the incoming datagrams into log", + }, + }, + }, -- listen + + send = + { + Handler = HandleConsoleNetUdpSend, + ParameterCombinations = + { + { + Params = "[Host] [Port] [Message]", + Help = "Sends the message [\"hello\"] through UDP to the specified host [localhost] and port [1024]", + }, + }, + } -- send + }, -- Subcommands ("net udp") + }, -- udp + wasc = { HelpString = "Requests the webadmin homepage using https", |