simon-svn: putty: simon

Commits to Tartarus CVS repository. tartarus-commits at lists.tartarus.org
Thu Jul 14 19:52:22 BST 2011


SVN root:       svn://svn.tartarus.org/sgt
Changes by:     simon
Revision:       9214
Date:           2011-07-14 19:52:21 +0100 (Thu, 14 Jul 2011)

Log message (27 lines):
Post-release destabilisation! Completely remove the struct type
'Config' in putty.h, which stores all PuTTY's settings and includes an
arbitrary length limit on every single one of those settings which is
stored in string form. In place of it is 'Conf', an opaque data type
everywhere outside the new file conf.c, which stores a list of (key,
value) pairs in which every key contains an integer identifying a
configuration setting, and for some of those integers the key also
contains extra parts (so that, for instance, CONF_environmt is a
string-to-string mapping). Everywhere that a Config was previously
used, a Conf is now; everywhere there was a Config structure copy,
conf_copy() is called; every lookup, adjustment, load and save
operation on a Config has been rewritten; and there's a mechanism for
serialising a Conf into a binary blob and back for use with Duplicate
Session.

User-visible effects of this change _should_ be minimal, though I
don't doubt I've introduced one or two bugs here and there which will
eventually be found. The _intended_ visible effects of this change are
that all arbitrary limits on configuration strings and lists (e.g.
limit on number of port forwardings) should now disappear; that list
boxes in the configuration will now be displayed in a sorted order
rather than the arbitrary order in which they were added to the list
(since the underlying data structure is now a sorted tree234 rather
than an ad-hoc comma-separated string); and one more specific change,
which is that local and dynamic port forwardings on the same port
number are now mutually exclusive in the configuration (putting 'D' in
the key rather than the value was a mistake in the first place).

Modified files:
U   putty/Recipe
U   putty/cmdline.c
A   putty/conf.c
U   putty/config.c
U   putty/cproxy.c
U   putty/dialog.c
U   putty/dialog.h
U   putty/ldisc.c
U   putty/ldisc.h
U   putty/logging.c
U   putty/macosx/README.OSX
U   putty/misc.c
U   putty/network.h
U   putty/pinger.c
U   putty/portfwd.c
U   putty/pproxy.c
U   putty/proxy.c
U   putty/proxy.h
U   putty/pscp.c
U   putty/psftp.c
U   putty/putty.h
U   putty/raw.c
U   putty/rlogin.c
U   putty/sercfg.c
U   putty/settings.c
U   putty/ssh.c
U   putty/ssh.h
U   putty/sshgss.h
U   putty/sshnogss.c
U   putty/storage.h
U   putty/telnet.c
U   putty/terminal.c
U   putty/terminal.h
U   putty/testback.c
U   putty/unix/gtkcfg.c
U   putty/unix/gtkdlg.c
U   putty/unix/gtkwin.c
U   putty/unix/unix.h
U   putty/unix/ux_x11.c
U   putty/unix/uxcfg.c
U   putty/unix/uxgss.c
U   putty/unix/uxplink.c
U   putty/unix/uxproxy.c
U   putty/unix/uxpterm.c
U   putty/unix/uxpty.c
U   putty/unix/uxputty.c
U   putty/unix/uxser.c
U   putty/unix/uxsftp.c
U   putty/unix/uxstore.c
U   putty/unix/uxucs.c
U   putty/windows/wincfg.c
U   putty/windows/winctrls.c
U   putty/windows/windlg.c
U   putty/windows/window.c
U   putty/windows/wingss.c
U   putty/windows/winplink.c
U   putty/windows/winproxy.c
U   putty/windows/winser.c
U   putty/windows/winsftp.c
U   putty/windows/winstore.c
U   putty/windows/winstuff.h
U   putty/windows/winucs.c
U   putty/windows/winx11.c
U   putty/x11fwd.c

Links:
http://svn.tartarus.org/sgt/?rev=9214&view=rev
http://svn.tartarus.org/sgt/putty/Recipe?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/cmdline.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/conf.c?rev=9214&view=markup
http://svn.tartarus.org/sgt/putty/config.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/cproxy.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/dialog.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/dialog.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/ldisc.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/ldisc.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/logging.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/macosx/README.OSX?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/misc.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/network.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/pinger.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/portfwd.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/pproxy.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/proxy.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/proxy.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/pscp.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/psftp.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/putty.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/raw.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/rlogin.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/sercfg.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/settings.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/ssh.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/ssh.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/sshgss.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/sshnogss.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/storage.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/telnet.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/terminal.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/terminal.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/testback.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/gtkcfg.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/gtkdlg.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/gtkwin.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/unix.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/ux_x11.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxcfg.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxgss.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxplink.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxproxy.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxpterm.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxpty.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxputty.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxser.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxsftp.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxstore.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/unix/uxucs.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/wincfg.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/winctrls.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/windlg.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/window.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/wingss.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/winplink.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/winproxy.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/winser.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/winsftp.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/winstore.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/winstuff.h?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/winucs.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/windows/winx11.c?rev=9214&r1=9213&r2=9214
http://svn.tartarus.org/sgt/putty/x11fwd.c?rev=9214&r1=9213&r2=9214



More information about the tartarus-commits mailing list