search for: mtu_probe_h

Displaying 2 results from an estimated 2 matches for "mtu_probe_h".

2010 Sep 20
0
No subject
...gt;hostname); + ifdebug(TRAFFIC) logger(LOG_INFO, "Sending MTU probe length %d to %s = (%s) from interval [%d - %d]", len, n->name, n->hostname, n->minmtu, = n->maxmtu); =20 send_udppacket(n, &packet); } @@ -147,24 +150,26 @@ event_add(n->mtuevent); } =20 -void mtu_probe_h(node_t *n, vpn_packet_t *packet, length_t len) { - ifdebug(TRAFFIC) logger(LOG_INFO, "Got MTU probe length %d from %s = (%s)", packet->len, n->name, n->hostname); +void mtu_probe_h(node_t *n, vpn_packet_t *packet) { + length_t len =3D packet->len; + ifdebug(TRAFFIC) logger(LOG...
2010 Nov 26
2
PMTU Discovery Question
Hi Guus, while checking the source code, I stumbled upon PMTU Discovery. I've got a question regarding the process of sending/receiving PMTU packets. As I understand, the packet flow is like this: 1 .Tinc creates a packet with a specific payload length to send it as an PMTU probe. (The data part is just some random bytes.) 2. This packet gets compressed and sent