File: Message-Data-Reliability.txt

package info (click to toggle)
ray 2.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,128 kB
  • ctags: 6,125
  • sloc: cpp: 49,973; sh: 325; makefile: 278; python: 168
file content (16 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

Adding the option -verify-message-integrity will add a verification
for any non-empty message.

The CRC32 algorithm is used.

If you have a processor that supports SSE 4.2, then you can compile with
CONFIG_SSE_4_2 (just add -D CONFIG_SSE_4_2 in the Makefile, for
example) to do the CRC32 on the hardware for more speedy results.

The hardware-accelerated code for CRC32 was written by Benjamin Kittridge
and is distributed on his blog at http://byteworm.com/2010/10/13/crc32/