About 50 results
Open links in new tab
  1. How is checksum used for error detection - Stack Overflow

    The checksum might have been changed, but the chances of it being changed to match the checksum of the changed content are slim. So, when you read the package, you calculate a new checksum for …

  2. How is a 1s complement checksum useful for error detection?

    Apr 10, 2011 · A checksum can be generated simply by adding bits. How is the extra step of taking the 1s complement useful? I understand the theory. I know how to calculate 1s complement and I know …

  3. network programming - Can a TCP checksum fail to detect an error? If ...

    Can a TCP checksum produce a false positive? Yes. The checksum is considerably smaller than the packet, so many different packets can match a given checksum. If yes, how is this dealt with? In …

  4. What's the difference between a CRC and a checksum?

    Jul 28, 2010 · CRC (Cyclic Redundancy Check) is a type of checksum, specifically a position dependent checksum algorithm (among others, such as Fletcher's checksum, Adler-32). As their name suggest, …

  5. Does the UDP protocol have some error detection?

    Jul 22, 2018 · The User Datagram Protocol provides some error detection. Someone says that it has checksum mechanics. But this protocol does not have a hand shaking process. So this ...

  6. Error Detection Effiency (CRC, Checksum, etc) - Stack Overflow

    Jun 6, 2011 · checksum crc telecommunication error-detection data-link-layer asked Aug 24, 2009 at 15:49 irl_irl 4,005 9 56 62

  7. Checking the error detection capabilities of CRC polynomials

    Aug 20, 2016 · Detection of burst errors: All CRCs can detect burst errors up to a size that equals their width. Detection of odd numbers of bit errors: CRC with polynomials with an even number of terms …

  8. Does UDP checksum detect all errors? - Stack Overflow

    May 8, 2012 · The IP header also has a checksum. Additionally, most other fields in both the IP and UDP/TCP header have to contain reasonable values for the packet to get accepted. And please don't …

  9. How can the CRC checksum give the position where the error occured?

    Jul 20, 2014 · I know how to compute a CRC checksum, and I know a CRC checksum can detect k-1 bit error (k being the length of the checksum). But what I am curious about is how the checksum can so …

  10. How do TCP and UDP detect transmission errors?

    Dec 25, 2010 · At the IP protocol level (on which both UDP and TDP are based), there is a checksum that confirms that the contents of the packet are valid. However, there are situations where certain …