diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-04-06 17:09:16 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-04-06 17:20:08 +0100 |
commit | 64381f5091955cbfe83c5c691d322c38749d19cf (patch) | |
tree | 7ddaaa558bca9bbbd5677cddb78f49720fecbe14 /lib/curl_sasl.h | |
parent | 28d005cc9bfe73aa087c3c54124dfb4ba14a0cf4 (diff) | |
download | curl-64381f5091955cbfe83c5c691d322c38749d19cf.tar.gz |
sasl: Added forward declaration of structures following recent changes
To avoid urldata.h being included from the header file or that the
source file has the correct include order as highlighted by one of
the auto builds recently.
Diffstat (limited to 'lib/curl_sasl.h')
-rw-r--r-- | lib/curl_sasl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/curl_sasl.h b/lib/curl_sasl.h index 25ebfe8f2..d2967b0f3 100644 --- a/lib/curl_sasl.h +++ b/lib/curl_sasl.h @@ -22,7 +22,11 @@ * ***************************************************************************/ -#include "pingpong.h" +#include <curl/curl.h> + +struct SessionHandle; +struct connectdata; +struct ntlmdata; /* Authentication mechanism values */ #define SASL_AUTH_NONE 0 |