From 920e684d4082e0ebed900e79d5523cf14fbf05b2 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Wed, 31 Dec 2014 11:40:16 +0000 Subject: endian: Moved read functions to new module --- lib/curl_ntlm_msgs.c | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'lib/curl_ntlm_msgs.c') diff --git a/lib/curl_ntlm_msgs.c b/lib/curl_ntlm_msgs.c index ece1d0fa4..3d6cf53e0 100644 --- a/lib/curl_ntlm_msgs.c +++ b/lib/curl_ntlm_msgs.c @@ -52,6 +52,7 @@ #define BUILDING_CURL_NTLM_MSGS_C #include "curl_ntlm_msgs.h" #include "curl_sasl.h" +#include "endian.h" #define _MPRINTF_REPLACE /* use our functions only */ #include @@ -148,28 +149,6 @@ static void ntlm_print_hex(FILE *handle, const char *buf, size_t len) # define DEBUG_OUT(x) Curl_nop_stmt #endif -/* - * This function converts from the little endian format used in the - * incoming package to whatever endian format we're using natively. - * Argument is a pointer to a 4 byte buffer. - */ -static unsigned int readint_le(unsigned char *buf) -{ - return ((unsigned int)buf[0]) | ((unsigned int)buf[1] << 8) | - ((unsigned int)buf[2] << 16) | ((unsigned int)buf[3] << 24); -} - -/* - * This function converts from the little endian format used in the incoming - * package to whatever endian format we're using natively. Argument is a - * pointer to a 2 byte buffer. - */ -static unsigned short readshort_le(unsigned char *buf) -{ - return (unsigned short)(((unsigned short)buf[0]) | - ((unsigned short)buf[1] << 8)); -} - /* * ntlm_decode_type2_target() * -- cgit v1.2.3