X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=src%2Fhttp-ntlm.h;h=6460d0d170ac347dc2983ef387268c905cb9f2c2;hb=4d7c5e087b2bc82c9f503dff003916d1047903ce;hp=ec6ddc3b8cf74d6e1aa27a76c2d66f5474bef186;hpb=52ad80309f8c9a5c1498f6ff6b3e11d8997290d7;p=wget diff --git a/src/http-ntlm.h b/src/http-ntlm.h index ec6ddc3b..6460d0d1 100644 --- a/src/http-ntlm.h +++ b/src/http-ntlm.h @@ -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 . In addition, as a special exception, the Free Software Foundation gives permission to link the code of its release of Wget with the @@ -44,9 +44,8 @@ struct ntlmdata { }; /* this is for ntlm header input */ -int ntlm_input PARAMS ((struct ntlmdata *, const char *)); +bool ntlm_input (struct ntlmdata *, const char *); /* this is for creating ntlm header output */ -char *ntlm_output PARAMS ((struct ntlmdata *, - const char *, const char *, int *)); +char *ntlm_output (struct ntlmdata *, const char *, const char *, bool *); #endif