Select Git revision
-
Henrik (Grubba) Grubbström authored
Rev: src/modules/system/doc/getegid:1.1 Rev: src/modules/system/doc/geteuid:1.1 Rev: src/modules/system/doc/getgid:1.1 Rev: src/modules/system/doc/getpgrp:1.1 Rev: src/modules/system/doc/getpid:1.1 Rev: src/modules/system/doc/getppid:1.1 Rev: src/modules/system/doc/getuid:1.1 Rev: src/modules/system/doc/hardlink:1.1 Rev: src/modules/system/doc/initgroups:1.1 Rev: src/modules/system/doc/readlink:1.1 Rev: src/modules/system/doc/setegid:1.1 Rev: src/modules/system/doc/seteuid:1.1 Rev: src/modules/system/doc/setgid:1.1 Rev: src/modules/system/doc/setuid:1.1 Rev: src/modules/system/doc/symlink:1.1
Henrik (Grubba) Grubbström authoredRev: src/modules/system/doc/getegid:1.1 Rev: src/modules/system/doc/geteuid:1.1 Rev: src/modules/system/doc/getgid:1.1 Rev: src/modules/system/doc/getpgrp:1.1 Rev: src/modules/system/doc/getpid:1.1 Rev: src/modules/system/doc/getppid:1.1 Rev: src/modules/system/doc/getuid:1.1 Rev: src/modules/system/doc/hardlink:1.1 Rev: src/modules/system/doc/initgroups:1.1 Rev: src/modules/system/doc/readlink:1.1 Rev: src/modules/system/doc/setegid:1.1 Rev: src/modules/system/doc/seteuid:1.1 Rev: src/modules/system/doc/setgid:1.1 Rev: src/modules/system/doc/setuid:1.1 Rev: src/modules/system/doc/symlink:1.1
prot-a-send-async.c 4.97 KiB
/*
* $Id: prot-a-send-async.c,v 0.17 1998/07/08 13:41:56 ceder Exp $
* Copyright (C) 1991, 1993, 1994, 1995, 1996 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
*
* LysKOM is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* LysKOM 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.
*
* You should have received a copy of the GNU General Public License
* along with LysKOM; see the file COPYING. If not, write to
* Lysator, c/o ISY, Linkoping University, S-581 83 Linkoping, SWEDEN,
* or the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
* MA 02139, USA.
*
* Please mail bug reports to bug-lyskom@lysator.liu.se.
*/
/*
* Asynchronous messages in protocol A.
*/
static const char *
rcsid = "$Id: prot-a-send-async.c,v 0.17 1998/07/08 13:41:56 ceder Exp $";
#include "rcs.h"
USE(rcsid);
#include <setjmp.h>
#include <time.h>
#include <sys/types.h>
#include <sys/socket.h>
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#include "misc-types.h"
#include "s-string.h"
#include "kom-types.h"
#include "com.h"
#include "async.h"
#include "connections.h"
#include "prot-a-send-async.h"
#include "async.h"
#include "isc-interface.h"
#include "mux.h"
#include "prot-a-output.h"
static void
async_header(Connection *fp,
int no_of_tokens,
Async fnc)
{
mux_printf(fp, ":%lu %lu", (unsigned long)no_of_tokens,
(unsigned long)fnc);
}
static void
async_trailer(Connection *fp)
{
mux_putc('\n', fp);
mux_flush(fp);
}
void
prot_a_async_new_text_old(Connection *cptr,
Text_no text_no,
Text_stat *text_s)
{
ASYNC_CHECK_ACCEPT(cptr, ay_new_text_old);
async_header(cptr, 16, ay_new_text_old);
mux_printf(cptr, " %lu", text_no);
prot_a_output_text_stat_old(cptr, text_s);
async_trailer(cptr);
}
void
prot_a_async_new_text(Connection *cptr,
Text_no text_no,
Text_stat *text_s)
{
ASYNC_CHECK_ACCEPT(cptr, ay_new_text);
async_header(cptr, 16, ay_new_text);
mux_printf(cptr, " %lu", text_no);
prot_a_output_text_stat_old(cptr, text_s);
async_trailer(cptr);
}
void
prot_a_async_i_am_on(Connection *cptr,
Who_info info)
{
ASYNC_CHECK_ACCEPT(cptr, ay_i_am_on);
async_header(cptr, 5, ay_i_am_on);
prot_a_output_who_info(cptr, &info);
async_trailer(cptr);
}
void
prot_a_async_logout(Connection *cptr,
Pers_no pers_no,
Session_no session_no)
{
ASYNC_CHECK_ACCEPT(cptr, ay_logout);
async_header(cptr, 2, ay_logout);
mux_printf(cptr, " %lu %lu", (unsigned long)pers_no,
(unsigned long)session_no);
async_trailer(cptr);
}
void
prot_a_async_new_name(Connection *cptr,
Conf_no conf_no,
String old_name,
String new_name)
{
ASYNC_CHECK_ACCEPT(cptr, ay_new_name);
async_header(cptr, 3, ay_new_name);
mux_printf(cptr, " %lu", (unsigned long)conf_no);
prot_a_output_string(cptr, old_name);
prot_a_output_string(cptr, new_name);
async_trailer(cptr);
}
void
prot_a_async_sync_db(Connection *cptr)
{
ASYNC_CHECK_ACCEPT(cptr, ay_sync_db);
async_header(cptr, 0, ay_sync_db);
async_trailer(cptr);
}
void
prot_a_async_forced_leave_conf(Connection *cptr,
Conf_no conf_no)
{
ASYNC_CHECK_ACCEPT(cptr, ay_leave_conf);
async_header(cptr, 1, ay_leave_conf);
mux_printf(cptr, " %lu", (unsigned long)conf_no);
async_trailer(cptr);
}
void
prot_a_async_login(Connection *cptr,
Pers_no pers_no,
int session_no)
{
ASYNC_CHECK_ACCEPT(cptr, ay_login);
async_header(cptr, 2, ay_login);
mux_printf(cptr, " %lu %lu", (unsigned long)pers_no,
(unsigned long)session_no);
async_trailer(cptr);
}
void
prot_a_async_rejected_connection(Connection *cptr)
{
ASYNC_CHECK_ACCEPT(cptr, ay_rejected_connection);
async_header(cptr, 0, ay_rejected_connection);
async_trailer(cptr);
}
void
prot_a_async_send_message(Connection *cptr,
Conf_no recipient,
Pers_no sender,
String message)
{
ASYNC_CHECK_ACCEPT(cptr, ay_send_message);
async_header(cptr, 3, ay_send_message);
mux_printf(cptr, " %lu %lu", (unsigned long)recipient,
(unsigned long)sender);
prot_a_output_string(cptr, message);
async_trailer(cptr);
}
void
prot_a_async_deleted_text(Connection *cptr,
Text_no text_no,
Text_stat *text_s)
{
ASYNC_CHECK_ACCEPT(cptr, ay_deleted_text);
async_header(cptr, 16, ay_deleted_text);
mux_printf(cptr, " %lu", text_no);
prot_a_output_text_stat(cptr, text_s);
async_trailer(cptr);
}