mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-04-20 20:45:02 -05:00
Sprinkle some header comments in various files in an attempt to explain what
they're for. [originally from svn r6639]
This commit is contained in:
parent
a58cd426b8
commit
7958a63147
@ -1,3 +1,8 @@
|
|||||||
|
/*
|
||||||
|
* cmdline.c - command-line parsing shared between many of the
|
||||||
|
* PuTTY applications
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* Session logging.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
4
misc.h
4
misc.h
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* Header for misc.c.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef PUTTY_MISC_H
|
#ifndef PUTTY_MISC_H
|
||||||
#define PUTTY_MISC_H
|
#define PUTTY_MISC_H
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* SSH port forwarding.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* Find the platform-specific header for this platform.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef PUTTY_PUTTYPS_H
|
#ifndef PUTTY_PUTTYPS_H
|
||||||
#define PUTTY_PUTTYPS_H
|
#define PUTTY_PUTTYPS_H
|
||||||
|
|
||||||
|
4
raw.c
4
raw.c
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* "Raw" backend.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
4
rlogin.c
4
rlogin.c
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* Rlogin backend.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
4
ssh.c
4
ssh.c
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* SSH backend.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
4
sshdh.c
4
sshdh.c
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* Diffie-Hellman implementation for PuTTY.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "ssh.h"
|
#include "ssh.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
4
sshdss.c
4
sshdss.c
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* Digital Signature Standard implementation for PuTTY.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
4
telnet.c
4
telnet.c
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* Telnet backend.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* Terminal emulator.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* sizetip.c - resize tips for PuTTY(tel) terminal window.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <tchar.h>
|
#include <tchar.h>
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* win_res.h - constants shared between win_res.rc2 and the C code.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef PUTTY_WIN_RES_H
|
#ifndef PUTTY_WIN_RES_H
|
||||||
#define PUTTY_WIN_RES_H
|
#define PUTTY_WIN_RES_H
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* console.c: various interactive-prompt routines shared between
|
* wincons.c - various interactive-prompt routines shared between
|
||||||
* the Windows console PuTTY tools
|
* the Windows console PuTTY tools
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* windlg.c - dialogs for PuTTY(tel), including the configuration dialog.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
/*
|
||||||
|
* window.c - the PuTTY(tel) main program, which runs a PuTTY terminal
|
||||||
|
* emulator and backend in a window.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* wintime.c - Avoid trouble with time() returning (time_t)-1 on Windows.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "putty.h"
|
#include "putty.h"
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user