mirror of
https://repo.or.cz/socat.git
synced 2025-05-21 04:32:41 +00:00
Fixed filan -s displaying "(stream)" instead of "tcp"
This commit is contained in:
parent
7a90caade5
commit
9968ca4c5b
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
@ -7,6 +7,9 @@ Security:
|
|||
Corrections:
|
||||
Fixed display of option phases in help output.
|
||||
|
||||
filan -s displayed "(stream)" instead of "tcp" with addresses
|
||||
(regression).
|
||||
|
||||
Building:
|
||||
Disabling certain features during configure could break build process.
|
||||
|
||||
|
|
4
fdname.c
4
fdname.c
|
@ -226,7 +226,7 @@ int sockname(int fd, FILE *outfile, char style) {
|
|||
#define FDNAME_OPTLEN 256
|
||||
#define FDNAME_NAMELEN 256
|
||||
socklen_t optlen;
|
||||
#if WITH_IP && ( HAVE_GETPROTOBYNUMBER || HAVE_GETPROTOBYNUMBER_R )
|
||||
#if (WITH_IP4 || WITH_IP6) && ( HAVE_GETPROTOBYNUMBER || HAVE_GETPROTOBYNUMBER_R )
|
||||
struct protoent protoent, *protoentp;
|
||||
#endif
|
||||
#define PROTONAMEMAX 1024
|
||||
|
@ -278,7 +278,7 @@ int sockname(int fd, FILE *outfile, char style) {
|
|||
Getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &optacceptconn, &optlen);
|
||||
#endif
|
||||
|
||||
#if WITH_IP && ( defined(SO_PROTOCOL) || defined(SO_PROTOTYPE) )
|
||||
#if (WITH_IP4 || WITH_IP6) && ( defined(SO_PROTOCOL) || defined(SO_PROTOTYPE) )
|
||||
#if HAVE_GETPROTOBYNUMBER_R==1 /* Linux */
|
||||
rc = getprotobynumber_r(proto, &protoent, protoname, sizeof(protoname), &protoentp);
|
||||
if (protoentp == NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue