About 103,000 results
Open links in new tab
  1. What is the largest Safe UDP Packet Size on the Internet

    259 I've read a number of articles about UDP packet sizes but have been unable to come to a conclusion on whats correct. A number of services restrict the largest UDP packet to 512 bytes …

  2. Why UDP header has 'length field'? - Stack Overflow

    Dec 30, 2016 · The UDP header length field is the length of the UDP header plus the UDP data. It is indeed redundant since this length can be calculated from the IP header total length field …

  3. What is the size of udp packets if I send 0 payload data in c#?

    Feb 10, 2021 · An IP packet is composed of two parts: the packet header and the payload. The size of an IPv4 header is at least 20 bytes, the size of an IPv6 header at least 40 bytes. The …

  4. How can i access and modify my UDP header? - Stack Overflow

    Feb 16, 2012 · So where exactly is my UDP packets header? Did i have to specify it? when i pass in some data, is the 'data' part of a standard UDP packet filled with the data i specify, and the …

  5. c - UDP checksum calculation - Stack Overflow

    The UDP checksum is performed over the entire payload, and the other fields in the header, and some fields from the IP header. A pseudo-header is constructed from the IP header in order to …

  6. Size of empty UDP and TCP packet? - Stack Overflow

    Jun 4, 2018 · UDP: Size of Ethernet frame - 24 Bytes Size of IPv4 Header (without any options) - 20 bytes Size of UDP header - 8 bytes Total size of an Ethernet Frame carrying an IP Packet …

  7. Detecting UDP vs. non-UDP packets in PCAP - Stack Overflow

    Feb 7, 2023 · When it is UDP, byte 23 in the packet is set to 17, however in non-UDP, byte 23 doesn't have the same meaning It's more complicated than that. A pcap file has, in the file …

  8. What is the min and max sizes of UDP & TCP header?

    Nov 23, 2015 · The mandatory TCP header is 20 bytes (minimum size), with optional protocol options appended to the end of the header. The size of the header in 32 bit words is defined …

  9. What's the practical limit for the data length of UDP packet?

    May 10, 2015 · The field size sets a theoretical limit of 65,535 bytes (8 byte header + 65,527 bytes of data) for a UDP datagram. The practical limit for the data length which is imposed by …

  10. UDP payload length and packet transmission - Stack Overflow

    Apr 30, 2015 · I have data 1245 MB for trasmission via UDP over IPv4. For calculation of expected number of packet transmission from A to B then B relay to C, if the data transmitted …