mirror of git://git.tartarus.org/simon/putty.git, used for client testing
Перейти к файлу
Simon Tatham 43abfd1783 Move omission of SSH protocol setting in PuTTYtel into windlg.c and
remove nosshres.rc accordingly

[originally from svn r682]
2000-10-06 12:43:19 +00:00
.cvsignore Add further types of garbage to .cvsignore and to "make clean" 2000-09-11 09:23:23 +00:00
LICENCE
MODULE
Makefile Move omission of SSH protocol setting in PuTTYtel into windlg.c and 2000-10-06 12:43:19 +00:00
README
be_all.c
be_none.c
be_nossh.c Oops - puttytel now needs a stub random_destroy_seed() to compile 2000-09-25 16:25:12 +00:00
ldisc.c
misc.c
mkfiles.pl Fix Jacob's fix for mingw32 resource compiler so that it _only_ happens 2000-09-19 08:24:51 +00:00
mscrypto.c
noise.c Tighten up use of "static" throughout. Module-internal things should NOT 2000-10-06 11:42:30 +00:00
pageant.c Tighten up use of "static" throughout. Module-internal things should NOT 2000-10-06 11:42:30 +00:00
pageant.ico Added Pageant, a first-attempt PuTTY authentication agent 2000-09-14 15:02:50 +00:00
pageant.rc Add the About and Licence boxes to Pageant 2000-09-29 08:43:06 +00:00
pageantc.c Improved means of IPC between agent and PuTTY 2000-09-19 16:29:28 +00:00
pageants.ico Added Pageant, a first-attempt PuTTY authentication agent 2000-09-14 15:02:50 +00:00
plink.c Add a parameter to write_clip() so that windlg.c need not call term_deselect 2000-10-06 12:32:25 +00:00
plink.rc Actually _commit_ plink. It now works as a CVS transport! 2000-09-11 08:27:15 +00:00
putty.h Add a parameter to write_clip() so that windlg.c need not call term_deselect 2000-10-06 12:32:25 +00:00
putty.ico
raw.c Store default port number in each back end 2000-10-04 14:35:15 +00:00
resource.h
scp.c Add a parameter to write_clip() so that windlg.c need not call term_deselect 2000-10-06 12:32:25 +00:00
scp.ico
scp.rc
sizetip.c Tighten up use of "static" throughout. Module-internal things should NOT 2000-10-06 11:42:30 +00:00
ssh.c Tighten up use of "static" throughout. Module-internal things should NOT 2000-10-06 11:42:30 +00:00
ssh.h Rationalised host key storage. Also started code reorg: persistent-state 2000-09-27 15:21:04 +00:00
sshblowf.c Fix Blowfish-with-SSH2 combination, and enable user cipher 2000-09-20 15:15:02 +00:00
sshbn.c Remove some spurious #includes 2000-09-28 08:37:10 +00:00
sshcrc.c
sshdes.c Remove some spurious #includes 2000-09-28 08:37:10 +00:00
sshdh.c
sshdss.c Work around DSA formatting bug in commercial-SSH 2.0.13 2000-10-03 09:05:56 +00:00
sshmd5.c
sshpubk.c Remove unnecessary DSS bit 2000-09-27 16:44:00 +00:00
sshrand.c
sshrsa.c Rationalised host key storage. Also started code reorg: persistent-state 2000-09-27 15:21:04 +00:00
sshsha.c
storage.h While we're doing a hostkey reorg, store port numbers as well 2000-09-28 08:37:10 +00:00
telnet.c Store default port number in each back end 2000-10-04 14:35:15 +00:00
terminal.c Add a parameter to write_clip() so that windlg.c need not call term_deselect 2000-10-06 12:32:25 +00:00
tree234.c Make the new test suite's comment more accurate :-) 2000-10-02 13:57:41 +00:00
tree234.h Add trailing newline in tree234.h 2000-10-02 11:47:30 +00:00
version.c
win_res.h Localise control IDs in each dialog procedure, for maintainability 2000-10-06 09:06:33 +00:00
win_res.rc Re-enable copying the Event Log. (rev 1.39 [r661] accidentally disabled it) 2000-10-06 12:31:54 +00:00
windlg.c Move omission of SSH protocol setting in PuTTYtel into windlg.c and 2000-10-06 12:43:19 +00:00
window.c Add a parameter to write_clip() so that windlg.c need not call term_deselect 2000-10-06 12:32:25 +00:00
winstore.c Cross-reference cleanup: winstore.c should not use fatalbox() 2000-10-06 12:10:26 +00:00
xlat.c

README

This is the README for PuTTY, a free Win32 Telnet and SSH client.

The provided Makefile is for MS Visual C++ systems. Type `nmake' to
build both putty.exe (the main program) and pscp.exe (an SCP
client). The comment at the top of the Makefile gives extra build
options you can use to build in limited Win32s compatibility, a hack
to pass SSH through some types of firewall, and `official' version
numbers.

MS Visual Studio version 6 falls over on the nasty macros in ssh.c.
This is a bug in Visual Studio. The culprit is the /ZI compiler
option (debug info generation: Edit and Continue). To avoid this
problem while compiling PuTTY under VS6, you should:
 - right-click ssh.c in the FileView
 - click Settings
 - select the C/C++ tab and the General category
 - under `Debug info:', select anything _other_ than `Program
   Database for Edit and Continue'.
Alternatively disable the /ZI option, replacing it with a saner
value, such as /Zi.

For other compilers, some alternative Makefiles are provided. These
Makefiles are generated automatically from the master `Makefile' by
the Perl script `mkfiles.pl'. Additions and corrections to the
script are more useful than additions and corrections to the
alternative Makefiles themselves.

The PuTTY home web site is

    http://www.chiark.greenend.org.uk/~sgtatham/putty/

Bug reports and feature requests should be sent to
<putty-bugs@lists.tartarus.org>. PLEASE read the section on the web
site about how to report bugs effectively. Do NOT send one-line
reports saying `it doesn't work'!

See the file LICENCE for the licence conditions.