-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfreqlog.c
75 lines (72 loc) · 2.58 KB
/
freqlog.c
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
/*********************************************************************/
/* */
/* This Program Written by Paul Edwards, 3:711/934@fidonet. */
/* Released to the Public Domain */
/* */
/*********************************************************************/
/*********************************************************************/
/* */
/* freqlog - produce list of FREQ'ed files */
/* */
/* This program searches the binkley.log file, and produces a */
/* list of all files that have been FREQed, in the format: */
/* filename address */
/* */
/*********************************************************************/
#include <stdio.h>
#include <string.h>
#include <ctype.h>
static char buf[1000];
static char addr[50];
static int state;
static char *p, *q, *pbuf;
int main(void)
{
state = 0;
while (fgets(buf, sizeof buf, stdin) != NULL)
{
if (*buf == '>') continue;
pbuf = buf + 23;
if ((strncmp(pbuf, "CONNECT", 7) == 0)
|| (strncmp(pbuf, "Connect", 7) == 0))
{
state = 1;
}
else if ((state == 1)
&& ((p = strrchr(pbuf, '(')) != NULL)
&& ((q = strchr(p, ')')) != NULL))
{
p++;
memcpy(addr, p, q - p);
addr[(size_t)(q - p)] = '\0';
state = 2;
}
else if ((state == 2) && (strncmp(pbuf, "File Request", 12) == 0))
{
state = 3;
}
else if ((state == 3) && (strncmp(pbuf, "Sent", 4) == 0))
{
p = strrchr(pbuf, '\\');
if (p != NULL)
{
q = strchr(p, '\n');
if (q != NULL)
{
*q = '\0';
p++;
printf("%-15s %s\n", p, addr);
}
}
}
else if ((state == 3) && (strncmp(pbuf, "End of", 6) == 0))
{
state = 0;
}
else if ((state == 3) && (strncmp(pbuf, "Session with", 12) == 0))
{
state = 0;
}
}
return (0);
}