Commit 318e0c84 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Guard msghdr_get_local_addr with ENABLE_HTTP3 macro

parent 17d5503b
...@@ -1688,6 +1688,7 @@ int daemonize(int nochdir, int noclose) { ...@@ -1688,6 +1688,7 @@ int daemonize(int nochdir, int noclose) {
#endif // !defined(__APPLE__) #endif // !defined(__APPLE__)
} }
#ifdef ENABLE_HTTP3
int msghdr_get_local_addr(Address &dest, msghdr *msg, int family) { int msghdr_get_local_addr(Address &dest, msghdr *msg, int family) {
switch (family) { switch (family) {
case AF_INET: case AF_INET:
...@@ -1721,6 +1722,7 @@ int msghdr_get_local_addr(Address &dest, msghdr *msg, int family) { ...@@ -1721,6 +1722,7 @@ int msghdr_get_local_addr(Address &dest, msghdr *msg, int family) {
return -1; return -1;
} }
#endif // ENABLE_HTTP3
} // namespace util } // namespace util
......
...@@ -916,7 +916,9 @@ std::mt19937 make_mt19937(); ...@@ -916,7 +916,9 @@ std::mt19937 make_mt19937();
// daemon() using fork(). // daemon() using fork().
int daemonize(int nochdir, int noclose); int daemonize(int nochdir, int noclose);
#ifdef ENABLE_HTTP3
int msghdr_get_local_addr(Address &dest, msghdr *msg, int family); int msghdr_get_local_addr(Address &dest, msghdr *msg, int family);
#endif // ENABLE_HTTP3
} // namespace util } // namespace util
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment