@@ -16,6 +16,8 @@ typedef struct {
16
16
PyObject *npaths;
17
17
PyObject *min_ttl;
18
18
PyObject *max_ttl;
19
+ PyObject *delay;
20
+ PyObject *broken_nat;
19
21
} DublinTracerouteClass;
20
22
21
23
@@ -37,39 +39,48 @@ DublinTraceroute_init(PyObject *self, PyObject *args,
37
39
unsigned short npaths = DublinTraceroute::default_npaths;
38
40
unsigned short min_ttl = DublinTraceroute::default_min_ttl;
39
41
unsigned short max_ttl = DublinTraceroute::default_max_ttl;
42
+ unsigned int delay = DublinTraceroute::default_delay;
43
+ bool broken_nat = DublinTraceroute::default_broken_nat;
40
44
static const char *arglist[] = { " target" , " sport" , " dport" ,
41
- " npaths" , " min_ttl" , " max_ttl" , NULL };
42
- if (!PyArg_ParseTupleAndKeywords (args, kwargs, " s|HHHHH " ,
45
+ " npaths" , " min_ttl" , " max_ttl" , " delay " , " broken_nat " , NULL };
46
+ if (!PyArg_ParseTupleAndKeywords (args, kwargs, " s|HHHHHHH " ,
43
47
(char **)&arglist, &target, &sport,
44
- &dport, &npaths, &min_ttl, &max_ttl)) {
48
+ &dport, &npaths, &min_ttl, &max_ttl, &delay,
49
+ &broken_nat)) {
45
50
return -1 ;
46
51
}
47
52
48
53
dublintraceroute = std::make_shared<DublinTraceroute>(
49
54
DublinTraceroute (target, sport, dport, npaths,
50
- min_ttl, max_ttl));
55
+ min_ttl, max_ttl, delay, broken_nat ));
51
56
52
57
// Set the instance attributes from the constructor parameters
53
58
PyObject *py_sport = PyUnicode_FromString (" sport" ),
54
59
*py_dport = PyUnicode_FromString (" dport" ),
55
60
*py_target = PyUnicode_FromString (" target" ),
56
61
*py_npaths = PyUnicode_FromString (" npaths" ),
57
62
*py_min_ttl = PyUnicode_FromString (" min_ttl" ),
58
- *py_max_ttl = PyUnicode_FromString (" max_ttl" );
63
+ *py_max_ttl = PyUnicode_FromString (" max_ttl" ),
64
+ *py_delay = PyUnicode_FromString (" delay" ),
65
+ *py_broken_nat = PyUnicode_FromString (" broken_nat" );
59
66
60
67
Py_INCREF (py_sport);
61
68
Py_INCREF (py_dport);
62
69
Py_INCREF (py_target);
63
70
Py_INCREF (py_npaths);
64
71
Py_INCREF (py_min_ttl);
65
72
Py_INCREF (py_max_ttl);
73
+ Py_INCREF (py_delay);
74
+ Py_INCREF (py_broken_nat);
66
75
67
76
PyObject_SetAttr (self, py_sport, Py_BuildValue (" i" , sport));
68
77
PyObject_SetAttr (self, py_dport, Py_BuildValue (" i" , dport));
69
78
PyObject_SetAttr (self, py_target, Py_BuildValue (" s" , target));
70
79
PyObject_SetAttr (self, py_npaths, Py_BuildValue (" i" , npaths));
71
80
PyObject_SetAttr (self, py_min_ttl, Py_BuildValue (" i" , min_ttl));
72
81
PyObject_SetAttr (self, py_max_ttl, Py_BuildValue (" i" , max_ttl));
82
+ PyObject_SetAttr (self, py_delay, Py_BuildValue (" i" , delay));
83
+ PyObject_SetAttr (self, py_broken_nat, PyBool_FromLong (broken_nat));
73
84
74
85
Py_INCREF (Py_None);
75
86
return 0 ;
@@ -105,6 +116,10 @@ static PyMemberDef DublinTraceroute_members[] = {
105
116
(char *)" minimum TTL" },
106
117
{(char *)" max_ttl" , T_OBJECT_EX, offsetof (DublinTracerouteClass, max_ttl), 0 ,
107
118
(char *)" maximum TTL" },
119
+ {(char *)" delay" , T_OBJECT_EX, offsetof (DublinTracerouteClass, delay), 0 ,
120
+ (char *)" inter-packet delay" },
121
+ {(char *)" broken_nat" , T_OBJECT_EX, offsetof (DublinTracerouteClass, broken_nat), 0 ,
122
+ (char *)" broken NAT flag" },
108
123
{NULL } /* Sentinel */
109
124
};
110
125
@@ -121,6 +136,8 @@ static PyMethodDef DublinTraceroute_methods[] =
121
136
" npaths : the number of paths to cover (optional, default=20)\n "
122
137
" min_ttl : the minimum Time-To-Live (optiona, default=1)\n "
123
138
" max_ttl : the maximum Time-To-Live (optiona, default=30)\n "
139
+ " delay : the inter-packet delay in milliseconds (optional, default=10ms)"
140
+ " broken_nat : the network has a broken NAT configuration (e.g. no payload fixup). Try this if you see less hops than expected"
124
141
" \n "
125
142
" Return value:\n "
126
143
" a JSON object containing the traceroute data. See example below\n "
@@ -223,5 +240,9 @@ PyInit__dublintraceroute(void)
223
240
PyLong_FromLong (DublinTraceroute::default_max_ttl));
224
241
PyObject_SetAttrString (module, " DEFAULT_MIN_TTL" ,
225
242
PyLong_FromLong (DublinTraceroute::default_min_ttl));
243
+ PyObject_SetAttrString (module, " DEFAULT_DELAY" ,
244
+ PyLong_FromLong (DublinTraceroute::default_delay));
245
+ PyObject_SetAttrString (module, " DEFAULT_BROKEN_NAT" ,
246
+ PyLong_FromLong (DublinTraceroute::default_broken_nat));
226
247
return module;
227
248
}
0 commit comments