Search:

Type: Posts; User: pabloski

Search: Search took 0.01 seconds.

  1. Replies
    9
    Views
    30,623

    I have made a little research on the topic and...

    I have made a little research on the topic and the problems lies in the network devices.

    Layer 2 switches simply cannot do ip fragmentation and obviously they cannot send icmp errors because of...
  2. Replies
    9
    Views
    30,623

    Yes, the datagram size is 2020 bytes, because I'm...

    Yes, the datagram size is 2020 bytes, because I'm just sending random datagrams of 2020 bytes for now.

    The Path MTU discovery should work as advertised. When I send a datagram, the first device...
  3. Replies
    9
    Views
    30,623

    I have posted the code. From the code you can see...

    I have posted the code. From the code you can see I'm setting the DF bit to 1 on purpose, because I want the network say me what the minimum MTU is.

    This way I can dynamically choose the best...
  4. Replies
    9
    Views
    30,623

    #include #include #include...

    #include <stdio.h>
    #include <stdlib.h>
    #include <sys/types.h>
    #include <sys/socket.h>
    #include <arpa/inet.h>
    #include <unistd.h>
    #include <string.h>

    // la...
  5. Replies
    9
    Views
    30,623

    UDP and packets greater than 1500 bytes

    Hi, I'm developing a tftp client and server and I want to dynamically select the
    udp payload size to boost transfer performance.

    I have tested it with two linux machines ( one has a gigabit...
Results 1 to 5 of 5