Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-07-17 | keep track of both maxfd and the size of the malloc'ed fdsets. | Markus Friedl | |
update maxfd if maxfd gets closed. | |||
2001-07-02 | improve cleanup/exit logic in ssh2: | Markus Friedl | |
stop listening to channels, detach channel users (e.g. sessions). wait for children (i.e. dying sessions), send exit messages, cleanup all channels. | |||
2001-06-30 | adress -> address; ok markus@ | Kevin Steves | |
2001-06-29 | use socklen_t for getsockopt arg #5; ok markus@ | Kevin Steves | |
2001-06-25 | update copyright for 2001 | Markus Friedl | |
2001-06-23 | more strict prototypes. raise warning level in Makefile.inc. markus ok'ed | Jun-ichiro itojun Hagino | |
TODO; cleanup headers | |||
2001-06-20 | move from channel_stop_listening to channel_free_all, | Markus Friedl | |
call channel_free_all before calling waitpid() in serverloop. fixes the utmp handling; report from Lutz.Jaenicke@aet.TU-Cottbus.DE | |||
2001-06-07 | use xxx_put_cstring() | Markus Friedl | |
2001-06-05 | don't delete the auth socket in channel_stop_listening() | Markus Friedl | |
auth_sock_cleanup_proc() will take care of this. | |||
2001-06-04 | switch uid when cleaning up tmp files and sockets; reported by ↵ | Markus Friedl | |
zen-parse@gmx.net on bugtraq | |||
2001-06-03 | use fatal_register_cleanup instead of atexit, sync with x11 authdir handling | Markus Friedl | |
2001-05-31 | undo the .c file split, just merge the header and keep the cvs history | Markus Friedl | |
2001-05-30 | channel layer cleanup: merge header files and split .c files | Markus Friedl | |
2001-05-28 | cleanup, typo | Markus Friedl | |
2001-05-28 | undo broken channel fix and try a different one. there | Markus Friedl | |
should be still some select errors... | |||
2001-05-19 | typo in error message | Kevin Steves | |
2001-05-16 | more select() error fixes (don't set rfd/wfd to -1). | Markus Friedl | |
2001-05-09 | fix -R for protocol 2, noticed by greg@nest.cx. | Markus Friedl | |
bug was introduced with experimental dynamic forwarding. | |||
2001-05-08 | adds correct error reporting to async connect()s | Markus Friedl | |
fixes the server-discards-data-before-connected-bug found by onoe@sm.sony.co.jp | |||
2001-05-04 | move to Channel **channels (instead of Channel *channels), fixes realloc ↵ | Markus Friedl | |
problems. channel_new now returns a Channel *, favour Channel * over channel id. remove old channel_allocate interface. | |||
2001-05-04 | channel_new() reallocs channels[], we cannot use Channel *c after calling | Markus Friedl | |
channel_new(), XXX fix this in the future... | |||
2001-05-03 | typo in debug() string | Kevin Steves | |
2001-04-29 | more ssh.com-2.0.x bug-compat; from per@appgate.com | Markus Friedl | |
2001-04-17 | undo socks5 and https support since they are not really used and | Markus Friedl | |
only bloat ssh. remove -D from usage(), since '-D' is experimental. | |||
2001-04-14 | remove some channels that are not appropriate for keepalive. | Markus Friedl | |
2001-04-13 | Add options ClientAliveInterval and ClientAliveCountMax to sshd. | Bob Beck | |
This gives the ability to do a "keepalive" via the encrypted channel which can't be spoofed (unlike TCP keepalives). Useful for when you want to use ssh connections to authenticate people for something, and know relatively quickly when they are no longer authenticated. Disabled by default (of course). ok markus@ | |||
2001-04-11 | https-connect and socks5 support. i feel so bad. | Markus Friedl | |
2001-04-10 | debug cleanup | Markus Friedl | |
2001-04-10 | cleanup socks4 handling | Markus Friedl | |
2001-04-07 | allow the ssh client act as a SOCKS4 proxy (dynamic local portforwarding). | Markus Friedl | |
work by Dan Kaminsky <dankamin@cisco.com> and me. thanks to Dan for this great patch: use 'ssh -D 1080 host' and make netscape use localhost:1080 as a socks proxy. | |||
2001-04-06 | do gid/groups-swap in addition to uid-swap, should help if /home/group | Markus Friedl | |
is chmod 750 + chgrp grp /home/group/, work be deraadt and me, thanks to olar@openwall.com is comments. we had many requests for this. | |||
2001-04-05 | fix whitespace: unexpand + trailing spaces. | Markus Friedl | |
2001-04-04 | more robust rekeying | Markus Friedl | |
don't send channel data after rekeying is started. | |||
2001-03-16 | implement "permitopen" key option, restricts -L style forwarding to | Markus Friedl | |
to specified host:port pairs. based on work by harlan@genua.de | |||
2001-03-04 | log functions should not be passed strings that end in newline as they | Todd C. Miller | |
get passed on to syslog() and when logging to stderr, do_log() appends its own newline. | |||
2001-03-04 | debug1->2 | Markus Friedl | |
2001-02-28 | typo | Markus Friedl | |
2001-02-28 | use ignore message to simulate a SSH2_MSG_CHANNEL_DATA message | Markus Friedl | |
use random content in ignore messages. | |||
2001-02-28 | unify debug messages | Markus Friedl | |
2001-02-28 | make sure remote stderr does not get truncated. | Markus Friedl | |
remove closed fd's from the select mask. | |||
2001-02-16 | remove debug | Markus Friedl | |
2001-02-15 | genericize password padding function for SSH1 and SSH2. | Markus Friedl | |
add stylized echo to 2, too. | |||
2001-02-08 | nuke sprintf, ok deraadt@ | Markus Friedl | |
2001-02-04 | unexpand and remove end-of-line whitespace; ok markus@ | Kevin Steves | |
2001-02-01 | use ipaddr in channel messages, ietf-secsh wants this | Markus Friedl | |
2001-01-31 | do not disconnect if local port forwarding fails, e.g. if port is already in use | Markus Friedl | |
2001-01-31 | ssh.com-2.0.1x does not send additional info in CHANNEL_OPEN_FAILURE ↵ | Markus Friedl | |
messages; bug report from edmundo@rano.org | |||
2001-01-29 | add get_peer_ipaddr(socket), x11-fwd in ssh2 requires ipaddr, not DNS | Markus Friedl | |
2001-01-29 | fix select overflow; ok deraadt@ and stevesk@ | Markus Friedl | |
2001-01-24 | missing freeaddrinfo(); ok markus@ | Kevin Steves | |