X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=textclient%2Fclient_chat.c;h=5b0da95f4024022f798e63f3b37b7a56b4a4ef08;hb=633eabfc5820a6cc3b3c45793243928d0fa9c099;hp=e725f02e95cc34ab6d5e8d8e8f1142c52d710da4;hpb=2dfd5bee542a9d635e380097e63c307bd6c27d65;p=citadel.git diff --git a/textclient/client_chat.c b/textclient/client_chat.c index e725f02e9..5b0da95f4 100644 --- a/textclient/client_chat.c +++ b/textclient/client_chat.c @@ -1,16 +1,14 @@ -/* - * front end for multiuser chat - * - * Copyright (c) 1987-2016 by the citadel.org team - * - * This program is open source software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 3. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - */ +// front end for multiuser chat +// +// Copyright (c) 1987-2016 by the citadel.org team +// +// This program is open source software. Use, duplication, and/or +// disclosure are subject to the GNU General Purpose License version 3. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. #include "textclient.h" @@ -19,7 +17,7 @@ extern char temp[]; char last_paged[SIZ] = ""; -void chatmode(CtdlIPC *ipc) +void chatmode(CtdlIPC * ipc) { char wbuf[SIZ]; char buf[SIZ]; @@ -46,7 +44,7 @@ void chatmode(CtdlIPC *ipc) strcpy(buf, ""); strcpy(wbuf, ""); - strcpy(last_user, ""); + strcpy(last_user, ""); color(BRIGHT_YELLOW); scr_printf("\n"); scr_printf("> "); @@ -138,7 +136,7 @@ void chatmode(CtdlIPC *ipc) snprintf(buf, sizeof buf, "RCHT poll|%d", seq); CtdlIPC_chat_send(ipc, buf); CtdlIPC_chat_recv(ipc, response); - + if (response[0] == '1') { seq = extract_int(&response[4], 0); extract_token(c_user, &response[4], 2, '|', sizeof c_user); @@ -180,7 +178,7 @@ void chatmode(CtdlIPC *ipc) /* * send an instant message */ -void page_user(CtdlIPC *ipc) +void page_user(CtdlIPC * ipc) { char buf[SIZ], touser[SIZ], msg[SIZ]; FILE *pagefp; @@ -234,7 +232,7 @@ void page_user(CtdlIPC *ipc) } -void quiet_mode(CtdlIPC *ipc) +void quiet_mode(CtdlIPC * ipc) { static int quiet = 0; char cret[SIZ]; @@ -243,16 +241,14 @@ void quiet_mode(CtdlIPC *ipc) r = CtdlIPCEnableInstantMessageReceipt(ipc, !quiet, cret); if (r / 100 == 2) { quiet = !quiet; - scr_printf("Quiet mode %sabled (%sother users may page you)\n", - (quiet) ? "en" : "dis", - (quiet) ? "no " : ""); + scr_printf("Quiet mode %sabled (%sother users may page you)\n", (quiet) ? "en" : "dis", (quiet) ? "no " : ""); } else { scr_printf("Unable to change quiet mode: %s\n", cret); } } -void stealth_mode(CtdlIPC *ipc) +void stealth_mode(CtdlIPC * ipc) { static int stealth = 0; char cret[SIZ]; @@ -262,8 +258,7 @@ void stealth_mode(CtdlIPC *ipc) if (r / 100 == 2) { stealth = !stealth; scr_printf("Stealth mode %sabled (you are %s)\n", - (stealth) ? "en" : "dis", - (stealth) ? "invisible" : "listed as online"); + (stealth) ? "en" : "dis", (stealth) ? "invisible" : "listed as online"); } else { scr_printf("Unable to change stealth mode: %s\n", cret); }