Added copyright-header to ntlm-files

git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@82 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
Mark Janssen 2005-12-16 09:07:56 +00:00
parent 229e8708c3
commit f4327eddcc
3 changed files with 43 additions and 1 deletions

View file

@ -27,4 +27,4 @@ clean:
install:
mkdir -p $(INSTALLPATH)
install -g root -m755 -o root $(PROGNAME) $(INSTALLPATH)/$(PROGNAME)
install -g root -m644 -o root contrib/$(PROGNAME).1 $(MANPATH)/$(PROGNAME).1
install -g root -m644 -o root debian/$(PROGNAME).1 $(MANPATH)/$(PROGNAME).1

22
ntlm.c
View file

@ -1,3 +1,25 @@
/* Proxytunnel - (C) 2001-2004 Jos Visser / Mark Janssen */
/* Contact: josv@osp.nl / maniac@maniac.nl */
/*
* This program 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
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* ntlm.c -- Code for handling NTLM authentication */
/* NTLM Code from Paul Solomon <psolomon@tpg.com.au> */
#include "ntlm.h"
#include "global.h"
#include <openssl/md4.h>

20
ntlm.h
View file

@ -1,3 +1,23 @@
/* Proxytunnel - (C) 2001-2004 Jos Visser / Mark Janssen */
/* Contact: josv@osp.nl / maniac@maniac.nl */
/*
* This program 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
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* ntlm.h */
void build_type1();