nghttpx: Workaround IRIX's struct sockaddr which contains union

This commit is contained in:
Tatsuhiro Tsujikawa 2015-01-17 14:59:24 +09:00
parent 2b458666ba
commit 13a14ecda8
1 changed files with 1 additions and 1 deletions

View File

@ -133,8 +133,8 @@ extern const char SHRPX_OPT_BACKEND_REQUEST_BUFFER[];
extern const char SHRPX_OPT_BACKEND_RESPONSE_BUFFER[];
union sockaddr_union {
sockaddr sa;
sockaddr_storage storage;
sockaddr sa;
sockaddr_in6 in6;
sockaddr_in in;
};