Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-05-09`realhost', passed back from all the backend init functions, wasSimon Tatham
scoped within those functions. It's now dynamically allocated. [originally from svn r1108]
2001-05-06Run entire source base through GNU indent to tidy up the varyingSimon Tatham
coding styles of the various contributors! Woohoo! [originally from svn r1098]
2001-04-28Remove my dire-warning `FIXME' in IPv4 dotted-decimal handlingSimon Tatham
because Jeroen points out that it's perfectly OK the way it is :-) [originally from svn r1080]
2001-04-16Replace PuTTY's 2-3-4 tree implementation with the shiny new countedSimon Tatham
one, in preparation for using it to speed up scrollback. [originally from svn r1053]
2001-04-16Increase the read buffer size in network processing for extra speed.Simon Tatham
[originally from svn r1047]
2001-03-15David Brinegar's workaround for an error reporting problem in someSimon Tatham
WinSocks. [originally from svn r1004]
2001-03-13Dave Hinton's modifications to the network layer interface, whichSimon Tatham
should make it possible to add SSL support later. [originally from svn r996]
2001-02-01Yet another attempt at OOB handling in the network abstraction. ThisSimon Tatham
version allows you to specify, per socket, which sockets receive OOB data in-line (so that you know what was before the mark and what was after) and which receive it out of line (so it's really a one-byte out-of-band facility rather than discard-to-mark). This reflects the fact that rlogin appears to make more sense in the latter mode, and telnet in the former. This patch makes rlogin work right for me. [originally from svn r921]
2001-01-29Don't forget to read any outstanding data on receipt of FD_CLOSE.Simon Tatham
Particularly useful for people speaking HTTP, Finger etc over raw connections. [originally from svn r913]
2001-01-29Robert de Bath's TCP Urgent / Telnet SYNCH patch.Simon Tatham
[originally from svn r912]
2001-01-24Improve socket error handling so that a socket error isn't anSimon Tatham
automatic fatalbox(). Instead, the error is passed to the receiver routine, which can decide just how fatal the problem really is. [originally from svn r894]
2001-01-22Add X11 forwarding, mainly thanks to Andreas SchultzSimon Tatham
[originally from svn r878]
2001-01-19Experimental Rlogin support, thanks to Delian Delchev. Local flowSimon Tatham
control is unsupported, and server-to-client comms may fail for want of working TCP Urgent. [originally from svn r875]
2001-01-11Remove rogue debug statementSimon Tatham
[originally from svn r855]
2001-01-09IPv4 numeric addresses were broken thanks to IPv6 patchSimon Tatham
[originally from svn r854]
2001-01-07Jeroen Massar's IPv6 patch. Disabled by default, for now.Simon Tatham
[originally from svn r849]
2000-12-18Apply improved WinSock error handling to the few situations it stillSimon Tatham
hadn't been applied to. [originally from svn r827]
2000-12-12Make memory management uniform: _everything_ now goes through theSimon Tatham
smalloc() macros and thence to the safemalloc() functions in misc.c. This should allow me to plug in a debugging allocator and track memory leaks and segfaults and things. [originally from svn r818]
2000-10-26Fix a segfault (addr->error was unpredictable following a dotted-dec lookup)Simon Tatham
[originally from svn r768]
2000-10-24Fix miscellaneous compiler warnings. Thanks to Jacob NevinsSimon Tatham
[originally from svn r755]
2000-10-23Improved entropy gathering.Simon Tatham
[originally from svn r750]
2000-10-23Oops. A field like `sending_oob' in the Socket structure reallySimon Tatham
deserves to be initialised to something sane at creation time. [originally from svn r748]
2000-10-23Created a shiny new abstraction for the socket handling. Has manySimon Tatham
advantages: - protocol modules can call sk_write() without having to worry about writes blocking, because blocking writes are handled in the abstraction layer and retried later. - `Lost connection while sending' is a thing of the past. - <winsock.h> is no longer needed in most modules, because "putty.h" doesn't have to declare `SOCKET' variables any more, only the abstracted `Socket' type. - select()-equivalent between multiple sockets will now be handled sensibly, which opens the way for things like SSH port forwarding. [originally from svn r745]