X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Fconn-func.c;h=23c2075895c1d3157402ed1d80d9cfc967f46b2f;hb=d2df7396a89b3e8de44379c305916bfee93ceb9b;hp=32001f08d93c97bb3ee454c7564ae1ef0b43b184;hpb=3d27073d61ab52277a3237c9a2375e5deda9d690;p=ngircd.git diff --git a/src/ngircd/conn-func.c b/src/ngircd/conn-func.c index 32001f08..23c20758 100644 --- a/src/ngircd/conn-func.c +++ b/src/ngircd/conn-func.c @@ -30,11 +30,17 @@ #include "conn-func.h" +/** + * Update "idle timestamp", the time of the last visible user action + * (e. g. like sending messages, joining or leaving channels). + * + * @param Idx Connection index. + */ GLOBAL void -Conn_UpdateIdle( CONN_ID Idx ) +Conn_UpdateIdle(CONN_ID Idx) { - assert( Idx > NONE ); - My_Connections[Idx].lastprivmsg = time( NULL ); + assert(Idx > NONE); + My_Connections[Idx].lastprivmsg = time(NULL); }