File: netcssysmesg.c

package info (click to toggle)
xshipwars 1.32-5
  • links: PTS
  • area: main
  • in suites: potato
  • size: 17,176 kB
  • ctags: 6,357
  • sloc: ansic: 157,152; makefile: 226; sh: 75
file content (42 lines) | stat: -rw-r--r-- 724 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include "swserv.h"



int NetHandleSysMessage(int condescriptor)
{
	return(0);
}


int NetSendSysMessage(
        int condescriptor,
        int code,               /* One of CS_SYSMESG_* */
        char *mesg
)
{
        char lmesg[CS_MESG_MAX + 256];
        char sndbuf[CS_DATA_MAX_LEN + 256];


        if(mesg == NULL)
	    return(-1);

        strncpy(lmesg, mesg, CS_MESG_MAX);
        lmesg[CS_MESG_MAX - 1] = '\0';


        /*
         *      CS_CODE_SYSMESSAGE format:
         *      
         *      code, mesg
         */
        sprintf(sndbuf, "%i %i %s\n",
                CS_CODE_SYSMESSAGE,
                code,
                lmesg
        );
        NetDoSend(condescriptor, sndbuf);


	return(0);
}