summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/serverloop.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* refactor channels.cdjm2017-09-121-2/+4
| | | | | | | | | | | | | | | | | | Move static state to a "struct ssh_channels" that is allocated at runtime and tracked as a member of struct ssh. Explicitly pass "struct ssh" to all channels functions. Replace use of the legacy packet APIs in channels.c. Rework sshd_config PermitOpen handling: previously the configuration parser would call directly into the channels layer. After the refactor this is not possible, as the channels structures are allocated at connection time and aren't available when the configuration is parsed. The server config parser now tracks PermitOpen itself and explicitly configures the channels code later. ok markus@
* remove ssh1 server code; ok djm@markus2016-08-131-2/+1
|
* standardise spacing in $OpenBSD$ tags; requested by deraadt@djm2006-03-251-1/+1
|
* quick hack to make ssh2 work again.markus2001-06-271-2/+2
|
* remove comments from .h, since they are cut&paste from the .c filesmarkus2001-06-261-1/+6
| | | | and out of sync
* prototype pedant. not very creative...itojun2001-06-261-2/+2
| | | | | - () -> (void) - no variable names
* $OpenBSD$niklas2001-01-291-0/+2
|
* split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.markus2001-01-211-0/+20
rename util.[ch] -> misc.[ch]