summaryrefslogtreecommitdiff
path: root/print-ssh.c
Commit message (Collapse)AuthorAgeFilesLines
* Lose some more unnecessary #include lines. [skip ci]Denis Ovsienko2020-11-271-4/+0
| | | | | This trivial change compiles fine with GCC 7.5.0 on Linux and Clang 10.0.1 on FreeBSD, so let's not run the full round of CI this time.
* Don't use <ctype.h> macros.Guy Harris2019-09-011-4/+8
| | | | | | | | | | | | | | Some of them are locale-dependent, and all of them run the risk of failing if you hand them a char with the 8th bit set. Move our replacements to a new netdissect-ctype.h file, and, for the ones that check for particular character types, add _ASCII to the name, to indicate that only ASCII characters pass the check. Do the same for the ones that map between cases, to indicate that they only map ASCII letters. For isspace(), explicitly check for the characters we care about, to make it clearer what we're doing.
* Use nd_print_protocol_caps() to print the protocol name in capsFrancois-Xavier Le Bail2019-06-231-4/+1
|
* Add dissector for SSH version exchangeAndreas Jaggi2019-05-081-0/+102