-
Notifications
You must be signed in to change notification settings - Fork 17
/
intrace.c
98 lines (84 loc) · 2.13 KB
/
intrace.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* intrace
*
* Main
*
* author: Robert Swiecki <[email protected]>
*/
/*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
#include <time.h>
#include <string.h>
#include "intrace.h"
extern char *optarg;
int main(int argc, char **argv)
{
int c;
int dl = dlInfo, err;
intrace_t intrace;
bzero(&intrace, sizeof(intrace_t));
intrace.paylSz = 1;
intrace.familyMode = ANY;
printf(INTRACE_NAME ", version " INTRACE_VERSION " " INTRACE_AUTHORS "\n");
for (;;) {
c = getopt(argc, argv, "h:p:d:s:46");
if (c < 0)
break;
switch (c) {
case 'h':
intrace.hostname = optarg;
break;
case 'p':
intrace.port = atoi(optarg);
break;
case 'd':
dl = atoi(optarg);
break;
case 's':
intrace.paylSz = strtoul(optarg, NULL, 10);
break;
case '4':
intrace.familyMode = IPV4;
break;
case '6':
intrace.familyMode = IPV6;
break;
default:
break;
}
}
/* Initialize subsystems */
if ((err = _debug_init(dl)) < 0) {
fprintf(stderr, "Can't initialize debug, err=%d!\n", err);
return err;
}
if (!intrace.hostname) {
debug_printf(dlInfo,
"Usage: %s <-h hostname> [-p <port>] [-d <debuglevel>] [-s <payloadsize>] [-4] [-6]\n",
argv[0]);
return errArg;
}
if (intrace.paylSz > MAX_PAYL_SZ) {
debug_printf(dlWarn, "Payload size set to %d\n", MAX_PAYL_SZ);
intrace.paylSz = MAX_PAYL_SZ;
}
return threads_process(&intrace);
}