]> Nishi Git Mirror - libw3.git/commitdiff
fixed the undefined reference
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Fri, 23 Feb 2024 11:39:13 +0000 (11:39 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Fri, 23 Feb 2024 11:39:13 +0000 (11:39 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@250 d27a3e52-49c5-7645-884c-6793ebffc270

Library/IRC.c
W3Version.h.m4

index b63dde8ec90431eeca608f97d21a5a3af79ba568..2d75982708c3578a89211dffe5a5f71b019f7033 100644 (file)
@@ -214,6 +214,8 @@ void W3_IRC_Set_Nickname(struct W3* w3, const char* nickname) { __W3_Add_Prop(w3
 
 void W3_IRC_Set_Password(struct W3* w3, const char* password) { __W3_Add_Prop(w3, "IRC_PASSWORD", password); }
 
+void W3_IRC_Disconnect(struct W3* w3) { __W3_Auto_Write(w3, "QUIT\r\n", 6); }
+
 void W3_IRC_Send_Request(struct W3* w3) {
        __W3_Auto_Write(w3, w3->method, strlen(w3->method));
        __W3_Auto_Write(w3, " ", 1);
index 8342490a29f18cea49680f15da98ef76526b9b18..6b9b042446ff34806c94787d3b0907d5d152b274 100644 (file)
@@ -6,7 +6,7 @@
 extern "C" {
 #endif
 
-#define LIBW3_VERSION "2.18" \
+#define LIBW3_VERSION "2.18A" \
 SUFFIX
 
 ifdef(`HTTP_SUPPORT', `#define LIBW3_HTTP_SUPPORT', `')