]> sjero.net Git - wget/blobdiff - src/http-ntlm.h
[svn] Merge of fix for bugs 20341 and 20410.
[wget] / src / http-ntlm.h
index 19d9b6b149be277bbf114fbcb06d5db0d9920920..6460d0d170ac347dc2983ef387268c905cb9f2c2 100644 (file)
@@ -2,12 +2,13 @@
 #define __HTTP_NTLM_H
 /* Declarations for http_ntlm.c
    Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
+   Contributed by Daniel Stenberg.
 
 This file is part of GNU Wget.
 
 GNU Wget is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
+the Free Software Foundation; either version 3 of the License, or
  (at your option) any later version.
 
 GNU Wget is distributed in the hope that it will be useful,
@@ -16,8 +17,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with Wget; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+along with Wget.  If not, see <http://www.gnu.org/licenses/>.
 
 In addition, as a special exception, the Free Software Foundation
 gives permission to link the code of its release of Wget with the
@@ -44,8 +44,8 @@ struct ntlmdata {
 };
 
 /* this is for ntlm header input */
-int ntlm_input (struct ntlmdata *, const char *);
+bool ntlm_input (struct ntlmdata *, const char *);
 
 /* this is for creating ntlm header output */
-char *ntlm_output (struct ntlmdata *, const char *, const char *, int *);
+char *ntlm_output (struct ntlmdata *, const char *, const char *, bool *);
 #endif