summaryrefslogtreecommitdiff
path: root/libsoup/auth/soup-auth-ntlm.c
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2020-03-25 03:59:41 -0700
committerPatrick Griffis <pgriffis@igalia.com>2020-09-19 15:41:24 -0700
commit4e39dbad76cbe672cf4a68afe2eb35e0ad0c67bc (patch)
tree53ce6ae75af42ecba2326997a3333fb52c35bb93 /libsoup/auth/soup-auth-ntlm.c
parent55d928b6cab01a96295e7d3da86942a3bfb29847 (diff)
downloadlibsoup-4e39dbad76cbe672cf4a68afe2eb35e0ad0c67bc.tar.gz
Modernize GObject declarations
Diffstat (limited to 'libsoup/auth/soup-auth-ntlm.c')
-rw-r--r--libsoup/auth/soup-auth-ntlm.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libsoup/auth/soup-auth-ntlm.c b/libsoup/auth/soup-auth-ntlm.c
index 2d078461..7a9b7ac3 100644
--- a/libsoup/auth/soup-auth-ntlm.c
+++ b/libsoup/auth/soup-auth-ntlm.c
@@ -69,6 +69,10 @@ typedef enum {
SOUP_NTLM_PASSWORD_REJECTED
} SoupNTLMPasswordState;
+struct _SoupAuthNTLM {
+ SoupConnectionAuth parent;
+};
+
typedef struct {
char *username, *domain;
guchar nt_hash[21], lm_hash[21];