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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
#include "xsw.h"
/*
* Turns logging on/off and sets log file name.
*/
int CmdLog(char *arg)
{
char stringa[256 + PATH_MAX + NAME_MAX];
char tmp_path[PATH_MAX + NAME_MAX];
char *strptr, *strptr2;
struct stat stat_buf;
off_t filesize;
/* Print usage? */
if((arg == NULL) ? 1 : (arg[0] == '\0'))
{
if(option.log_client ||
option.log_net ||
option.log_errors
)
{
if(stat(fname.log, &stat_buf))
filesize = 0;
else
filesize = stat_buf.st_size;
sprintf(stringa,
"log: on log file: %s log size: %ld bytes",
fname.log,
filesize
);
}
else
{
sprintf(stringa,
"log: off"
);
}
MesgAdd(stringa, xsw_color.standard_text);
return(0);
}
/* Parse "<state> [path]" */
strncpy(stringa, arg, 256 + PATH_MAX + NAME_MAX);
stringa[256 + PATH_MAX + NAME_MAX - 1] = '\0';
strptr = strchr(stringa, ' ');
if(strptr != NULL)
{
strncpy(tmp_path, strptr + 1, PATH_MAX + NAME_MAX);
tmp_path[PATH_MAX + NAME_MAX - 1] = '\0';
StringStripSpaces(tmp_path);
strptr2 = PathSubHome(tmp_path);
if(strptr2 != NULL)
{
strncpy(tmp_path, strptr2, PATH_MAX + NAME_MAX);
tmp_path[PATH_MAX + NAME_MAX - 1] = '\0';
}
if(stat(tmp_path, &stat_buf))
filesize = 0;
else
filesize = stat_buf.st_size;
/* Set new log file name. */
strncpy(fname.log, tmp_path, PATH_MAX + NAME_MAX);
fname.log[PATH_MAX + NAME_MAX - 1] = '\0';
*strptr = '\0';
/* Turn logging on/off. */
if(!strcmp("on", stringa))
{
option.log_client = 1;
option.log_net = 1;
option.log_errors = 1;
sprintf(stringa,
"log: on log file: %s log size: %ld bytes",
fname.log,
filesize
);
}
else
{
option.log_client = 0;
option.log_net = 0;
option.log_errors = 0;
sprintf(stringa, "log: off");
}
MesgAdd(stringa, xsw_color.standard_text);
}
else
{
/* Turn logging on/off. */
if(!strcmp("on", stringa))
{
option.log_client = 1;
option.log_net = 1;
option.log_errors = 1;
if(stat(fname.log, &stat_buf))
filesize = 0;
else
filesize = stat_buf.st_size;
sprintf(stringa,
"log: on log file: %s log size: %ld bytes",
fname.log,
filesize
);
}
else
{
option.log_client = 0;
option.log_net = 0;
option.log_errors = 0;
sprintf(stringa, "log: off");
}
MesgAdd(stringa, xsw_color.standard_text);
}
return(0);
}
|