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