search for: n_long

Displaying 3 results from an estimated 3 matches for "n_long".

Did you mean: u_long
2018 Dec 12
2
[PATCH] drop old netinet/in_systm.h include
This header provides only three typedefs: n_long, n_short, and n_time. OpenSSH doesn't use it at all, and the headers it includes don't. So punt this ancient include since it offers nothing useful. --- defines.h | 1 - includes.h | 1 - misc.c | 1 - readconf.c | 1 - servconf.c | 1 - 5 files changed, 5 deletions(-) diff --git a/...
2015 Nov 12
3
Inexplicable ASAN report. Code generation bug?
...ice.n_short.n_header with the structure and union looking like these: struct NumericData { int32 vl_len_; /* varlena header (do not touch directly!) */ union NumericChoice choice; /* choice of format */ }; union NumericChoice { uint16 n_header; /* Header word */ struct NumericLong n_long; /* Long form (4-byte header) */ struct NumericShort n_short; /* Short form (2-byte header) */ }; struct NumericShort { uint16 n_header; /* Sign + display scale + weight */ NumericDigit n_data[FLEXIBLE_ARRAY_MEMBER]; /* Digits */ }; struct NumericLong { uint16 n_sign_dscale; /* Si...
2000 Jun 07
1
[PATCH]: Port of openssh-2.1.0p3 to Cygwin environment
...y versus text mode in file open calls. - Disable some file permission checks for Cygwin to allow working on FAT file systems. - [bsd-daemon.c} When working in daemon mode, let parent process sleep a second to avoid a race condition in Cygwin. - [defines.h] typedef the types `n_short', `n_long' and `n_time' instead of including netinet/in_systm.h for Cygwin. - [includes.h] include getopt.h for Cygwin. Define O_BINARY as far as it's not already defined. - [login.c] Cast -1 to uid_t to avoid compiler warnings. - [packet.c] IPTOS_LOWDELAY and IPTOS_THROUGHPUT are define...