mirror of
https://github.com/proxytunnel/proxytunnel.git
synced 2026-01-23 02:34:59 +00:00
Added vim config instruction to not use spaces.
git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@198 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
parent
074b2a0f8c
commit
688f352eb4
19 changed files with 33 additions and 2 deletions
2
base64.c
2
base64.c
|
|
@ -137,3 +137,5 @@ int unbase64(unsigned char *out, const unsigned char *in, int maxlen)
|
|||
|
||||
return (len);
|
||||
}
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
2
base64.h
2
base64.h
|
|
@ -21,3 +21,5 @@
|
|||
|
||||
void base64(unsigned char *out, const unsigned char *in, int len);
|
||||
int unbase64(unsigned char *out, const unsigned char *in, int maxlen);
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -56,3 +56,4 @@ void make_basicauth()
|
|||
free( p );
|
||||
}
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -23,4 +23,4 @@ char basicauth[80]; /* Buffer to hold the proxies basic authentication data */
|
|||
/* Functions */
|
||||
void make_basicauth();
|
||||
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -522,3 +522,5 @@ static char *getCredentialsFromFile( const char* filename, char **user, char **p
|
|||
|
||||
return strdup( "Error opening password file" );
|
||||
}
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -71,3 +71,5 @@ void cmdline_parser_print_help( void );
|
|||
void cmdline_parser_print_version( void );
|
||||
|
||||
#endif /* _cmdline_h */
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
2
config.h
2
config.h
|
|
@ -28,3 +28,5 @@
|
|||
#ifndef _PASSWORD_LEN
|
||||
# define _PASSWORD_LEN 80
|
||||
#endif
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
2
global.h
2
global.h
|
|
@ -29,3 +29,5 @@ If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
|
|||
#else
|
||||
#define PROTO_LIST(list) ()
|
||||
#endif
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
2
io.c
2
io.c
|
|
@ -160,3 +160,5 @@ void cpio(PTSTREAM *stream1, PTSTREAM *stream2)
|
|||
}
|
||||
closeall();
|
||||
}
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
2
io.h
2
io.h
|
|
@ -20,3 +20,5 @@
|
|||
/* io.h */
|
||||
int readline(PTSTREAM *pts);
|
||||
void cpio(PTSTREAM *stream1, PTSTREAM *stream2);
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -54,3 +54,5 @@ void my_perror( char *msg )
|
|||
message( "error: %s: [%d] %s\n", msg, errno, errstr );
|
||||
}
|
||||
}
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
2
ntlm.c
2
ntlm.c
|
|
@ -482,4 +482,4 @@ void build_ntlm2_response() {
|
|||
lm2digest[16 + i] = b->client_challenge[i];
|
||||
}
|
||||
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
1
ntlm.h
1
ntlm.h
|
|
@ -109,3 +109,4 @@ typedef struct {
|
|||
unsigned long data_start;
|
||||
} blob;
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -459,3 +459,5 @@ int main( int argc, char *argv[] )
|
|||
|
||||
exit( 0 );
|
||||
}
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -63,3 +63,4 @@ char buf[SIZE]; /* Data transfer buffer */
|
|||
#define MAX( x, y ) ( ( (x)>(y) ) ? (x) : (y) )
|
||||
#endif
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -244,3 +244,5 @@ int stream_get_outgoing_fd(PTSTREAM *pts)
|
|||
return pts->outgoing_fd;
|
||||
#endif
|
||||
}
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -48,3 +48,5 @@ int stream_copy(PTSTREAM *pts_from, PTSTREAM *pts_to);
|
|||
int stream_enable_ssl(PTSTREAM *pts);
|
||||
int stream_get_incoming_fd(PTSTREAM *pts);
|
||||
int stream_get_outgoing_fd(PTSTREAM *pts);
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -207,3 +207,5 @@ static void handler(int s)
|
|||
signo = s;
|
||||
}
|
||||
#endif /* HAVE_READPASSPHRASE */
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
|
|
@ -170,3 +170,5 @@ setproctitle(const char *fmt, ...)
|
|||
}
|
||||
|
||||
#endif /* HAVE_SETPROCTITLE */
|
||||
|
||||
// vim:noet
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue