search for: n_short

Displaying 4 results from an estimated 4 matches for "n_short".

Did you mean: u_short
2015 Nov 12
3
Inexplicable ASAN report. Code generation bug?
...xplicitly by my code which agrees with the shadow bytes listed. It looks like asan is complaining that the code is doing a 4-byte read of the last 2 bytes of the object. But in fact the code is accessing those last two bytes through a 2-byte short which an expression that looks like (n)->choice.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; /*...
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/defines.h...
2002 Jun 15
4
[Bug 276] openssh-3.2.3p1 does not compile on IRIX - SCM_RIGHTS undefined
http://bugzilla.mindrot.org/show_bug.cgi?id=276 ------- Additional Comments From stevesk at pobox.com 2002-06-15 14:26 ------- this is what i asked in a message a while back; can an IRIX expert help here? "should we be using a UNIX95 (or whatever) namespace for IRIX? what happens with D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1" ------- You are receiving this
2000 Jun 07
1
[PATCH]: Port of openssh-2.1.0p3 to Cygwin environment
...Care for binary 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_THROUGH...