From: jluehrs2 Date: Sun, 2 Sep 2007 18:41:44 +0000 (-0500) Subject: document ctcp commands X-Git-Tag: 0.03~93 X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=f251f4114f28af6a35a5dafb32a24ac9e9f7cefd;p=luairc.git document ctcp commands --- diff --git a/src/irc.lua b/src/irc.lua index fa16e9f..4a21a96 100644 --- a/src/irc.lua +++ b/src/irc.lua @@ -816,7 +816,16 @@ end -- }}} -- ctcp commands {{{ --- ctcp_ping() - send a CTCP ping request {{{ +-- ctcp_ping {{{ +--- +-- Send a CTCP ping request. +-- @param cb Callback to call when the information is available. The single +-- table parameter to this callback will contain the fields: +-- +-- @param nick User to ping function ctcp_ping(cb, nick) nick = nick:lower() if not icallbacks.ctcp_ping[nick] then @@ -828,7 +837,16 @@ function ctcp_ping(cb, nick) end -- }}} --- ctcp_time() - send a localtime request {{{ +-- ctcp_time {{{ +--- +-- Send a localtime request. +-- @param cb Callback to call when the information is available. The single +-- table parameter to this callback will contain the fields: +-- +-- @param nick User to request the localtime from function ctcp_time(cb, nick) nick = nick:lower() if not icallbacks.ctcp_time[nick] then @@ -840,7 +858,16 @@ function ctcp_time(cb, nick) end -- }}} --- ctcp_version() - send a client version request {{{ +-- ctcp_version {{{ +--- +-- Send a client version request. +-- @param cb Callback to call when the information is available. The single +-- table parameter to this callback will contain the fields: +-- +-- @param nick User to request the client version from function ctcp_version(cb, nick) nick = nick:lower() if not icallbacks.ctcp_version[nick] then