nghttpx: Use copy instead of const reference of backend group
This commit is contained in:
parent
d8822f2a8e
commit
210a5c4f01
|
@ -88,7 +88,7 @@ private:
|
||||||
Worker *worker_;
|
Worker *worker_;
|
||||||
// nullptr if TLS is not used.
|
// nullptr if TLS is not used.
|
||||||
SSL_CTX *ssl_ctx_;
|
SSL_CTX *ssl_ctx_;
|
||||||
const std::shared_ptr<DownstreamAddrGroup> &group_;
|
std::shared_ptr<DownstreamAddrGroup> group_;
|
||||||
// Address of remote endpoint
|
// Address of remote endpoint
|
||||||
DownstreamAddr *addr_;
|
DownstreamAddr *addr_;
|
||||||
IOControl ioctrl_;
|
IOControl ioctrl_;
|
||||||
|
|
Loading…
Reference in New Issue