mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-15 12:50:42 +02:00
12 lines
178 B
C++
12 lines
178 B
C++
|
|
#include<netdb.h>
|
||
|
|
#include"Net/Detail/AddrInfoReleaser.hpp"
|
||
|
|
|
||
|
|
namespace Net { namespace Detail {
|
||
|
|
|
||
|
|
AddrInfoReleaser::~AddrInfoReleaser() {
|
||
|
|
if (addrs)
|
||
|
|
freeaddrinfo(addrs);
|
||
|
|
}
|
||
|
|
|
||
|
|
}}
|