author | Michael Krelin <hacker@klever.net> | 2013-02-13 22:30:47 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2013-02-13 22:30:47 (UTC) |
commit | d6d845ab3cdbc76943d68329aa0aaa3ddf2af21a (patch) (unidiff) | |
tree | a115a131493aa73cdc4fe00f2e002a2f32f67d4e /src | |
parent | 41f437eeadaae0dce4a3dad3da6dde2bd3c3de99 (diff) | |
download | iii-d6d845ab3cdbc76943d68329aa0aaa3ddf2af21a.zip iii-d6d845ab3cdbc76943d68329aa0aaa3ddf2af21a.tar.gz iii-d6d845ab3cdbc76943d68329aa0aaa3ddf2af21a.tar.bz2 |
moved tcp checksum calculation to header
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | src/eyetil.cc | 18 | ||||
-rw-r--r-- | src/eyetil.h | 11 |
2 files changed, 16 insertions, 13 deletions
diff --git a/src/eyetil.cc b/src/eyetil.cc index 11e2fb7..cd22eea 100644 --- a/src/eyetil.cc +++ b/src/eyetil.cc | |||
@@ -84,4 +84,9 @@ binary_t md5_digester::final() { | |||
84 | } | 84 | } |
85 | 85 | ||
86 | uint16_t block512_t::tcpcksum(block512_t& data) { | ||
87 | uint32_t sum = std::accumulate(data.data,data.data+words,0); | ||
88 | while(uint32_t hw = sum>>16) sum = (sum&0xffff)+hw; | ||
89 | return 0xffff&~sum; | ||
90 | } | ||
86 | 91 | ||
87 | static void make_path_for_template(const std::string& p,mode_t m) { | 92 | static void make_path_for_template(const std::string& p,mode_t m) { |
@@ -151,17 +156,4 @@ bool tarchive_t::read_data_into_fd(int fd) { | |||
151 | } | 156 | } |
152 | 157 | ||
153 | #pragma pack(1) | ||
154 | struct block512_t { | ||
155 | enum { words = 512 / sizeof(uint16_t) }; | ||
156 | uint16_t data[words]; | ||
157 | |||
158 | static uint16_t tcpcksum(block512_t& data) { | ||
159 | uint32_t sum = std::accumulate(data.data,data.data+words,0); | ||
160 | while(uint32_t hw = sum>>16) sum = (sum&0xffff)+hw; | ||
161 | return 0xffff&~sum; | ||
162 | } | ||
163 | |||
164 | }; | ||
165 | #pragma pack() | ||
166 | 158 | ||
167 | binary_t integrity_digest(const void *ptr,size_t size,const std::string& ukey) { | 159 | binary_t integrity_digest(const void *ptr,size_t size,const std::string& ukey) { |
diff --git a/src/eyetil.h b/src/eyetil.h index 03b9ba8..7517ba6 100644 --- a/src/eyetil.h +++ b/src/eyetil.h | |||
@@ -64,4 +64,15 @@ template<> inline void md5_digester::update<binary_t>(const binary_t& x) { | |||
64 | } | 64 | } |
65 | 65 | ||
66 | #pragma pack(1) | ||
67 | struct block512_t { | ||
68 | enum { words = 512 / sizeof(uint16_t) }; | ||
69 | uint16_t data[words]; | ||
70 | |||
71 | inline uint8_t *dptr(size_t o) { return ((uint8_t*)this)+o; } | ||
72 | |||
73 | static uint16_t tcpcksum(block512_t& data); | ||
74 | }; | ||
75 | #pragma pack() | ||
76 | |||
66 | class tmpdir_t { | 77 | class tmpdir_t { |
67 | public: | 78 | public: |