mirror of
https://github.com/proxytunnel/proxytunnel.git
synced 2026-08-03 00:02:59 +00:00
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:
parent
229e8708c3
commit
f4327eddcc
3 changed files with 43 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -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
22
ntlm.c
|
|
@ -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
20
ntlm.h
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue