- Refactor listening socket list. All of the listening sockets are

now maintained in a single linked-list in a transport-independent manner.
- Use queue.h for linked-list structure.
- Use linked-list for AllowedPeers.
- Use getaddrinfo(8) even for Unix Domain sockets.
- Use macros to type-casting from/to struct sockaddr{,_in,_in6}.
- Define fu_* macro for union f_un to shorten the member names.
- Remove an extra #include <sys/type.h>.
- Add "static" to non-exported symbols.
- !INET support is still incomplete but will be fixed later.

There is no functional change except for some minor debug messages.
This commit is contained in:
Hiroki Sato 2016-12-12 19:10:14 +00:00
parent 86e1d2977f
commit 783e461c73
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=309925
2 changed files with 379 additions and 414 deletions

View File

@ -13,6 +13,9 @@ LIBADD= util
WARNS?= 3
.if ${MK_INET_SUPPORT} != "no"
CFLAGS+= -DINET
.endif
.if ${MK_INET6_SUPPORT} != "no"
CFLAGS+= -DINET6
.endif

File diff suppressed because it is too large Load Diff