Skip to content

Commit 581a3e7

Browse files
committed
NTP: Fix p_ntp_time_fmt() using epoch 1/epoch 2 convention (RFC 4330)
Moreover: Update the error message, replace "[Time is too large to fit into a time_t]" by "[timestamp overflow]". Update 4 test processings, based on skip_time_t_not (64).
1 parent f589a0f commit 581a3e7

8 files changed

+102
-68
lines changed

ntp.c

+11-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626

2727
#include "extract.h"
2828

29-
#define JAN_1970 INT64_C(2208988800) /* 1970 - 1900 in seconds */
29+
/* NTP epoch 1: January 1, 1900, 00:00:00 UTC. */
30+
#define DIFF_1970_1900 INT64_C(2208988800) /* 1970 - 1900 in seconds */
31+
/* RFC4330 - 3. NTP Timestamp Format - 6h 28m 16s UTC on 7 February 2036 */
32+
/* NTP epoch 2: February 7, 2036, 06:28:16 UTC. */
33+
#define DIFF_2036_1970 INT64_C(2085978496) /* 2036 - 1970 in seconds */
3034

3135
void
3236
p_ntp_time_fmt(netdissect_options *ndo, const char *fmt,
@@ -50,18 +54,22 @@ p_ntp_time_fmt(netdissect_options *ndo, const char *fmt,
5054
* print the UTC time in human-readable format.
5155
*/
5256
if (i) {
53-
int64_t seconds_64bit = (int64_t)i - JAN_1970;
57+
int64_t seconds_64bit;
5458
time_t seconds;
5559
char time_buf[128];
5660
const char *time_string;
5761

62+
if ((i & 0x80000000) != 0)
63+
seconds_64bit = (int64_t)i - DIFF_1970_1900;
64+
else
65+
seconds_64bit = (int64_t)i + DIFF_2036_1970;
5866
seconds = (time_t)seconds_64bit;
5967
if (seconds != seconds_64bit) {
6068
/*
6169
* It doesn't fit into a time_t, so we can't hand it
6270
* to gmtime.
6371
*/
64-
time_string = "[Time is too large to fit into a time_t]";
72+
time_string = "[timestamp overflow]";
6573
} else {
6674
time_string = nd_format_time(time_buf, sizeof (time_buf),
6775
fmt, gmtime(&seconds));

tests/TESTLIST

+2-4
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,9 @@ mpls-ldp-hello mpls-ldp-hello.pcap mpls-ldp-hello.out -v
129129
ldp-common-session ldp-common-session.pcap ldp-common-session.out -v
130130
ldp_infloop ldp-infinite-loop.pcap ldp_infloop.out
131131
lspping-fec-ldp lspping-fec-ldp.pcap lspping-fec-ldp.out
132-
lspping-fec-ldp-v lspping-fec-ldp.pcap lspping-fec-ldp-v.out -v
133-
lspping-fec-ldp-vv lspping-fec-ldp.pcap lspping-fec-ldp-vv.out -vv
132+
# Tests with -v and -vv are now in TESTrun skipped if skip_time_t_not (64)
134133
lspping-fec-rsvp lspping-fec-rsvp.pcap lspping-fec-rsvp.out
135-
lspping-fec-rsvp-v lspping-fec-rsvp.pcap lspping-fec-rsvp-v.out -v
136-
lspping-fec-rsvp-vv lspping-fec-rsvp.pcap lspping-fec-rsvp-vv.out -vv
134+
# Tests with -v and -vv are now in TESTrun skipped if skip_time_t_not (64)
137135
mpls-traceroute mpls-traceroute.pcap mpls-traceroute.out
138136
mpls-traceroute-v mpls-traceroute.pcap mpls-traceroute-v.out -v
139137
mpls-over-udp mpls-over-udp.pcap mpls-over-udp.out

tests/TESTrun

+28
Original file line numberDiff line numberDiff line change
@@ -557,6 +557,34 @@ my @decode_tests = (
557557
output => 'time_2107-tt.out',
558558
args => '-tt -q SPECIAL_t'
559559
},
560+
{
561+
skip => skip_time_t_not (64),
562+
name => 'lspping-fec-ldp-v',
563+
input => 'lspping-fec-ldp.pcap',
564+
output => 'lspping-fec-ldp-v.out',
565+
args => '-v'
566+
},
567+
{
568+
skip => skip_time_t_not (64),
569+
name => 'lspping-fec-ldp-vv',
570+
input => 'lspping-fec-ldp.pcap',
571+
output => 'lspping-fec-ldp-vv.out',
572+
args => '-vv'
573+
},
574+
{
575+
skip => skip_time_t_not (64),
576+
name => 'lspping-fec-rsvp-v',
577+
input => 'lspping-fec-rsvp.pcap',
578+
output => 'lspping-fec-rsvp-v.out',
579+
args => '-v'
580+
},
581+
{
582+
skip => skip_time_t_not (64),
583+
name => 'lspping-fec-rsvp-vv',
584+
input => 'lspping-fec-rsvp.pcap',
585+
output => 'lspping-fec-rsvp-vv.out',
586+
args => '-vv'
587+
},
560588
);
561589

562590
sub decode_exit_status {

tests/lspping-fec-ldp-v.out

+15-15
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
Return Code: No return code or return code contained in the Error Code TLV (0)
1111
Return Subcode: (0)
1212
Sender Handle: 0x00000000, Sequence: 1
13-
TimeStamp Sent: 1087208228.000027564 (1934-06-15T10:17:08Z)
13+
TimeStamp Sent: 1087208228.000027564 (2070-07-21T16:45:24Z)
1414
TimeStamp Received: no timestamp
1515
Target FEC Stack TLV (1), length: 12
1616
LDP IPv4 prefix subTLV (1), length: 5
@@ -22,8 +22,8 @@
2222
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
2323
Return Subcode: (0)
2424
Sender Handle: 0x00000000, Sequence: 1
25-
TimeStamp Sent: 1087208228.000027564 (1934-06-15T10:17:08Z)
26-
TimeStamp Received: 1087208228.000027928 (1934-06-15T10:17:08Z)
25+
TimeStamp Sent: 1087208228.000027564 (2070-07-21T16:45:24Z)
26+
TimeStamp Received: 1087208228.000027928 (2070-07-21T16:45:24Z)
2727
4 2004-06-14 10:17:08.878375 MPLS (label 100704, tc 6, [S], ttl 64)
2828
IP (tos 0xc0, ttl 64, id 40725, offset 0, flags [none], proto TCP (6), length 71)
2929
12.4.4.4.2006 > 12.1.1.1.179: Flags [P.], cksum 0x6c0d (correct), seq 399708866:399708885, ack 708613212, win 16384, options [nop,nop,TS val 84784455 ecr 130411], length 19: BGP
@@ -39,7 +39,7 @@
3939
Return Code: No return code or return code contained in the Error Code TLV (0)
4040
Return Subcode: (0)
4141
Sender Handle: 0x00000000, Sequence: 2
42-
TimeStamp Sent: 1087208229.000029880 (1934-06-15T10:17:09Z)
42+
TimeStamp Sent: 1087208229.000029880 (2070-07-21T16:45:25Z)
4343
TimeStamp Received: no timestamp
4444
Target FEC Stack TLV (1), length: 12
4545
LDP IPv4 prefix subTLV (1), length: 5
@@ -51,8 +51,8 @@
5151
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
5252
Return Subcode: (0)
5353
Sender Handle: 0x00000000, Sequence: 2
54-
TimeStamp Sent: 1087208229.000029880 (1934-06-15T10:17:09Z)
55-
TimeStamp Received: 1087208229.000030186 (1934-06-15T10:17:09Z)
54+
TimeStamp Sent: 1087208229.000029880 (2070-07-21T16:45:25Z)
55+
TimeStamp Received: 1087208229.000030186 (2070-07-21T16:45:25Z)
5656
8 2004-06-14 10:17:10.128607 MPLS (label 100688, tc 7, [S], ttl 255)
5757
IP (tos 0x0, ttl 64, id 40729, offset 0, flags [none], proto UDP (17), length 76)
5858
12.4.4.4.4786 > 127.0.0.1.3503:
@@ -61,7 +61,7 @@
6161
Return Code: No return code or return code contained in the Error Code TLV (0)
6262
Return Subcode: (0)
6363
Sender Handle: 0x00000000, Sequence: 3
64-
TimeStamp Sent: 1087208230.000029928 (1934-06-15T10:17:10Z)
64+
TimeStamp Sent: 1087208230.000029928 (2070-07-21T16:45:26Z)
6565
TimeStamp Received: no timestamp
6666
Target FEC Stack TLV (1), length: 12
6767
LDP IPv4 prefix subTLV (1), length: 5
@@ -73,8 +73,8 @@
7373
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
7474
Return Subcode: (0)
7575
Sender Handle: 0x00000000, Sequence: 3
76-
TimeStamp Sent: 1087208230.000029928 (1934-06-15T10:17:10Z)
77-
TimeStamp Received: 1087208230.000030250 (1934-06-15T10:17:10Z)
76+
TimeStamp Sent: 1087208230.000029928 (2070-07-21T16:45:26Z)
77+
TimeStamp Received: 1087208230.000030250 (2070-07-21T16:45:26Z)
7878
10 2004-06-14 10:17:11.128577 MPLS (label 100688, tc 7, [S], ttl 255)
7979
IP (tos 0x0, ttl 64, id 40731, offset 0, flags [none], proto UDP (17), length 76)
8080
12.4.4.4.4786 > 127.0.0.1.3503:
@@ -83,7 +83,7 @@
8383
Return Code: No return code or return code contained in the Error Code TLV (0)
8484
Return Subcode: (0)
8585
Sender Handle: 0x00000000, Sequence: 4
86-
TimeStamp Sent: 1087208231.000029918 (1934-06-15T10:17:11Z)
86+
TimeStamp Sent: 1087208231.000029918 (2070-07-21T16:45:27Z)
8787
TimeStamp Received: no timestamp
8888
Target FEC Stack TLV (1), length: 12
8989
LDP IPv4 prefix subTLV (1), length: 5
@@ -95,8 +95,8 @@
9595
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
9696
Return Subcode: (0)
9797
Sender Handle: 0x00000000, Sequence: 4
98-
TimeStamp Sent: 1087208231.000029918 (1934-06-15T10:17:11Z)
99-
TimeStamp Received: 1087208231.000030237 (1934-06-15T10:17:11Z)
98+
TimeStamp Sent: 1087208231.000029918 (2070-07-21T16:45:27Z)
99+
TimeStamp Received: 1087208231.000030237 (2070-07-21T16:45:27Z)
100100
12 2004-06-14 10:17:12.128655 MPLS (label 100688, tc 7, [S], ttl 255)
101101
IP (tos 0x0, ttl 64, id 40733, offset 0, flags [none], proto UDP (17), length 76)
102102
12.4.4.4.4786 > 127.0.0.1.3503:
@@ -105,7 +105,7 @@
105105
Return Code: No return code or return code contained in the Error Code TLV (0)
106106
Return Subcode: (0)
107107
Sender Handle: 0x00000000, Sequence: 5
108-
TimeStamp Sent: 1087208232.000029937 (1934-06-15T10:17:12Z)
108+
TimeStamp Sent: 1087208232.000029937 (2070-07-21T16:45:28Z)
109109
TimeStamp Received: no timestamp
110110
Target FEC Stack TLV (1), length: 12
111111
LDP IPv4 prefix subTLV (1), length: 5
@@ -117,5 +117,5 @@
117117
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
118118
Return Subcode: (0)
119119
Sender Handle: 0x00000000, Sequence: 5
120-
TimeStamp Sent: 1087208232.000029937 (1934-06-15T10:17:12Z)
121-
TimeStamp Received: 1087208232.000030273 (1934-06-15T10:17:12Z)
120+
TimeStamp Sent: 1087208232.000029937 (2070-07-21T16:45:28Z)
121+
TimeStamp Received: 1087208232.000030273 (2070-07-21T16:45:28Z)

tests/lspping-fec-ldp-vv.out

+15-15
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
Return Code: No return code or return code contained in the Error Code TLV (0)
1111
Return Subcode: (0)
1212
Sender Handle: 0x00000000, Sequence: 1
13-
TimeStamp Sent: 1087208228.000027564 (1934-06-15T10:17:08Z)
13+
TimeStamp Sent: 1087208228.000027564 (2070-07-21T16:45:24Z)
1414
TimeStamp Received: no timestamp
1515
Target FEC Stack TLV (1), length: 12
1616
LDP IPv4 prefix subTLV (1), length: 5
@@ -24,8 +24,8 @@
2424
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
2525
Return Subcode: (0)
2626
Sender Handle: 0x00000000, Sequence: 1
27-
TimeStamp Sent: 1087208228.000027564 (1934-06-15T10:17:08Z)
28-
TimeStamp Received: 1087208228.000027928 (1934-06-15T10:17:08Z)
27+
TimeStamp Sent: 1087208228.000027564 (2070-07-21T16:45:24Z)
28+
TimeStamp Received: 1087208228.000027928 (2070-07-21T16:45:24Z)
2929
4 2004-06-14 10:17:08.878375 MPLS (label 100704, tc 6, [S], ttl 64)
3030
IP (tos 0xc0, ttl 64, id 40725, offset 0, flags [none], proto TCP (6), length 71)
3131
12.4.4.4.2006 > 12.1.1.1.179: Flags [P.], cksum 0x6c0d (correct), seq 399708866:399708885, ack 708613212, win 16384, options [nop,nop,TS val 84784455 ecr 130411], length 19: BGP
@@ -41,7 +41,7 @@
4141
Return Code: No return code or return code contained in the Error Code TLV (0)
4242
Return Subcode: (0)
4343
Sender Handle: 0x00000000, Sequence: 2
44-
TimeStamp Sent: 1087208229.000029880 (1934-06-15T10:17:09Z)
44+
TimeStamp Sent: 1087208229.000029880 (2070-07-21T16:45:25Z)
4545
TimeStamp Received: no timestamp
4646
Target FEC Stack TLV (1), length: 12
4747
LDP IPv4 prefix subTLV (1), length: 5
@@ -55,8 +55,8 @@
5555
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
5656
Return Subcode: (0)
5757
Sender Handle: 0x00000000, Sequence: 2
58-
TimeStamp Sent: 1087208229.000029880 (1934-06-15T10:17:09Z)
59-
TimeStamp Received: 1087208229.000030186 (1934-06-15T10:17:09Z)
58+
TimeStamp Sent: 1087208229.000029880 (2070-07-21T16:45:25Z)
59+
TimeStamp Received: 1087208229.000030186 (2070-07-21T16:45:25Z)
6060
8 2004-06-14 10:17:10.128607 MPLS (label 100688, tc 7, [S], ttl 255)
6161
IP (tos 0x0, ttl 64, id 40729, offset 0, flags [none], proto UDP (17), length 76)
6262
12.4.4.4.4786 > 127.0.0.1.3503: [udp sum ok]
@@ -65,7 +65,7 @@
6565
Return Code: No return code or return code contained in the Error Code TLV (0)
6666
Return Subcode: (0)
6767
Sender Handle: 0x00000000, Sequence: 3
68-
TimeStamp Sent: 1087208230.000029928 (1934-06-15T10:17:10Z)
68+
TimeStamp Sent: 1087208230.000029928 (2070-07-21T16:45:26Z)
6969
TimeStamp Received: no timestamp
7070
Target FEC Stack TLV (1), length: 12
7171
LDP IPv4 prefix subTLV (1), length: 5
@@ -79,8 +79,8 @@
7979
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
8080
Return Subcode: (0)
8181
Sender Handle: 0x00000000, Sequence: 3
82-
TimeStamp Sent: 1087208230.000029928 (1934-06-15T10:17:10Z)
83-
TimeStamp Received: 1087208230.000030250 (1934-06-15T10:17:10Z)
82+
TimeStamp Sent: 1087208230.000029928 (2070-07-21T16:45:26Z)
83+
TimeStamp Received: 1087208230.000030250 (2070-07-21T16:45:26Z)
8484
10 2004-06-14 10:17:11.128577 MPLS (label 100688, tc 7, [S], ttl 255)
8585
IP (tos 0x0, ttl 64, id 40731, offset 0, flags [none], proto UDP (17), length 76)
8686
12.4.4.4.4786 > 127.0.0.1.3503: [udp sum ok]
@@ -89,7 +89,7 @@
8989
Return Code: No return code or return code contained in the Error Code TLV (0)
9090
Return Subcode: (0)
9191
Sender Handle: 0x00000000, Sequence: 4
92-
TimeStamp Sent: 1087208231.000029918 (1934-06-15T10:17:11Z)
92+
TimeStamp Sent: 1087208231.000029918 (2070-07-21T16:45:27Z)
9393
TimeStamp Received: no timestamp
9494
Target FEC Stack TLV (1), length: 12
9595
LDP IPv4 prefix subTLV (1), length: 5
@@ -103,8 +103,8 @@
103103
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
104104
Return Subcode: (0)
105105
Sender Handle: 0x00000000, Sequence: 4
106-
TimeStamp Sent: 1087208231.000029918 (1934-06-15T10:17:11Z)
107-
TimeStamp Received: 1087208231.000030237 (1934-06-15T10:17:11Z)
106+
TimeStamp Sent: 1087208231.000029918 (2070-07-21T16:45:27Z)
107+
TimeStamp Received: 1087208231.000030237 (2070-07-21T16:45:27Z)
108108
12 2004-06-14 10:17:12.128655 MPLS (label 100688, tc 7, [S], ttl 255)
109109
IP (tos 0x0, ttl 64, id 40733, offset 0, flags [none], proto UDP (17), length 76)
110110
12.4.4.4.4786 > 127.0.0.1.3503: [udp sum ok]
@@ -113,7 +113,7 @@
113113
Return Code: No return code or return code contained in the Error Code TLV (0)
114114
Return Subcode: (0)
115115
Sender Handle: 0x00000000, Sequence: 5
116-
TimeStamp Sent: 1087208232.000029937 (1934-06-15T10:17:12Z)
116+
TimeStamp Sent: 1087208232.000029937 (2070-07-21T16:45:28Z)
117117
TimeStamp Received: no timestamp
118118
Target FEC Stack TLV (1), length: 12
119119
LDP IPv4 prefix subTLV (1), length: 5
@@ -127,5 +127,5 @@
127127
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
128128
Return Subcode: (0)
129129
Sender Handle: 0x00000000, Sequence: 5
130-
TimeStamp Sent: 1087208232.000029937 (1934-06-15T10:17:12Z)
131-
TimeStamp Received: 1087208232.000030273 (1934-06-15T10:17:12Z)
130+
TimeStamp Sent: 1087208232.000029937 (2070-07-21T16:45:28Z)
131+
TimeStamp Received: 1087208232.000030273 (2070-07-21T16:45:28Z)

tests/lspping-fec-rsvp-v.out

+15-15
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Return Code: No return code or return code contained in the Error Code TLV (0)
77
Return Subcode: (0)
88
Sender Handle: 0x00000000, Sequence: 1
9-
TimeStamp Sent: 1087208037.000131030 (1934-06-15T10:13:57Z)
9+
TimeStamp Sent: 1087208037.000131030 (2070-07-21T16:42:13Z)
1010
TimeStamp Received: no timestamp
1111
Target FEC Stack TLV (1), length: 24
1212
RSVP IPv4 Session Query subTLV (3), length: 20
@@ -19,8 +19,8 @@
1919
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
2020
Return Subcode: (0)
2121
Sender Handle: 0x00000000, Sequence: 1
22-
TimeStamp Sent: 1087208037.000131030 (1934-06-15T10:13:57Z)
23-
TimeStamp Received: 1087208037.000131348 (1934-06-15T10:13:57Z)
22+
TimeStamp Sent: 1087208037.000131030 (2070-07-21T16:42:13Z)
23+
TimeStamp Received: 1087208037.000131348 (2070-07-21T16:42:13Z)
2424
3 2004-06-14 10:13:58.572787 MPLS (label 100704, tc 7, [S], ttl 255)
2525
IP (tos 0x0, ttl 64, id 40271, offset 0, flags [none], proto UDP (17), length 88)
2626
12.4.4.4.4529 > 127.0.0.1.3503:
@@ -29,7 +29,7 @@
2929
Return Code: No return code or return code contained in the Error Code TLV (0)
3030
Return Subcode: (0)
3131
Sender Handle: 0x00000000, Sequence: 2
32-
TimeStamp Sent: 1087208038.000133345 (1934-06-15T10:13:58Z)
32+
TimeStamp Sent: 1087208038.000133345 (2070-07-21T16:42:14Z)
3333
TimeStamp Received: no timestamp
3434
Target FEC Stack TLV (1), length: 24
3535
RSVP IPv4 Session Query subTLV (3), length: 20
@@ -42,8 +42,8 @@
4242
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
4343
Return Subcode: (0)
4444
Sender Handle: 0x00000000, Sequence: 2
45-
TimeStamp Sent: 1087208038.000133345 (1934-06-15T10:13:58Z)
46-
TimeStamp Received: 1087208038.000136480 (1934-06-15T10:13:58Z)
45+
TimeStamp Sent: 1087208038.000133345 (2070-07-21T16:42:14Z)
46+
TimeStamp Received: 1087208038.000136480 (2070-07-21T16:42:14Z)
4747
5 2004-06-14 10:13:59.572866 MPLS (label 100704, tc 7, [S], ttl 255)
4848
IP (tos 0x0, ttl 64, id 40273, offset 0, flags [none], proto UDP (17), length 88)
4949
12.4.4.4.4529 > 127.0.0.1.3503:
@@ -52,7 +52,7 @@
5252
Return Code: No return code or return code contained in the Error Code TLV (0)
5353
Return Subcode: (0)
5454
Sender Handle: 0x00000000, Sequence: 3
55-
TimeStamp Sent: 1087208039.000133363 (1934-06-15T10:13:59Z)
55+
TimeStamp Sent: 1087208039.000133363 (2070-07-21T16:42:15Z)
5656
TimeStamp Received: no timestamp
5757
Target FEC Stack TLV (1), length: 24
5858
RSVP IPv4 Session Query subTLV (3), length: 20
@@ -65,8 +65,8 @@
6565
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
6666
Return Subcode: (0)
6767
Sender Handle: 0x00000000, Sequence: 3
68-
TimeStamp Sent: 1087208039.000133363 (1934-06-15T10:13:59Z)
69-
TimeStamp Received: 1087208039.000133684 (1934-06-15T10:13:59Z)
68+
TimeStamp Sent: 1087208039.000133363 (2070-07-21T16:42:15Z)
69+
TimeStamp Received: 1087208039.000133684 (2070-07-21T16:42:15Z)
7070
7 2004-06-14 10:14:00.572959 MPLS (label 100704, tc 7, [S], ttl 255)
7171
IP (tos 0x0, ttl 64, id 40275, offset 0, flags [none], proto UDP (17), length 88)
7272
12.4.4.4.4529 > 127.0.0.1.3503:
@@ -75,7 +75,7 @@
7575
Return Code: No return code or return code contained in the Error Code TLV (0)
7676
Return Subcode: (0)
7777
Sender Handle: 0x00000000, Sequence: 4
78-
TimeStamp Sent: 1087208040.000133384 (1934-06-15T10:14:00Z)
78+
TimeStamp Sent: 1087208040.000133384 (2070-07-21T16:42:16Z)
7979
TimeStamp Received: no timestamp
8080
Target FEC Stack TLV (1), length: 24
8181
RSVP IPv4 Session Query subTLV (3), length: 20
@@ -88,8 +88,8 @@
8888
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
8989
Return Subcode: (0)
9090
Sender Handle: 0x00000000, Sequence: 4
91-
TimeStamp Sent: 1087208040.000133384 (1934-06-15T10:14:00Z)
92-
TimeStamp Received: 1087208040.000133697 (1934-06-15T10:14:00Z)
91+
TimeStamp Sent: 1087208040.000133384 (2070-07-21T16:42:16Z)
92+
TimeStamp Received: 1087208040.000133697 (2070-07-21T16:42:16Z)
9393
9 2004-06-14 10:14:01.573010 MPLS (label 100704, tc 7, [S], ttl 255)
9494
IP (tos 0x0, ttl 64, id 40278, offset 0, flags [none], proto UDP (17), length 88)
9595
12.4.4.4.4529 > 127.0.0.1.3503:
@@ -98,7 +98,7 @@
9898
Return Code: No return code or return code contained in the Error Code TLV (0)
9999
Return Subcode: (0)
100100
Sender Handle: 0x00000000, Sequence: 5
101-
TimeStamp Sent: 1087208041.000133401 (1934-06-15T10:14:01Z)
101+
TimeStamp Sent: 1087208041.000133401 (2070-07-21T16:42:17Z)
102102
TimeStamp Received: no timestamp
103103
Target FEC Stack TLV (1), length: 24
104104
RSVP IPv4 Session Query subTLV (3), length: 20
@@ -111,5 +111,5 @@
111111
Return Code: Replying router is an egress for the FEC at stack depth 0 (3)
112112
Return Subcode: (0)
113113
Sender Handle: 0x00000000, Sequence: 5
114-
TimeStamp Sent: 1087208041.000133401 (1934-06-15T10:14:01Z)
115-
TimeStamp Received: 1087208041.000133707 (1934-06-15T10:14:01Z)
114+
TimeStamp Sent: 1087208041.000133401 (2070-07-21T16:42:17Z)
115+
TimeStamp Received: 1087208041.000133707 (2070-07-21T16:42:17Z)

0 commit comments

Comments
 (0)