nils-ohlmeier / sipsak

SIP swiss army knife
GNU General Public License v2.0
140 stars 37 forks source link

Fix MD5 auth calculation on many 64-bit systems. #36

Closed wdoekes closed 7 years ago

wdoekes commented 7 years ago

Unsigned long is very often 8 bytes, not 4. Use stdint.h if available.

Before: 403 on REGISTER After: 200 like with the debian-supplied sipsak 0.9.6-2.1build1

nils-ohlmeier commented 7 years ago

Thank you!