summaryrefslogtreecommitdiff
path: root/src/packet_sender.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/packet_sender.cpp')
-rw-r--r--src/packet_sender.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/packet_sender.cpp b/src/packet_sender.cpp
index c7a91e2..96f7649 100644
--- a/src/packet_sender.cpp
+++ b/src/packet_sender.cpp
@@ -267,6 +267,11 @@ void PacketSender::open_l3_socket(SocketType type) {
#endif
const int level = (is_v6) ? IPPROTO_IPV6 : IPPROTO_IP;
if (setsockopt(sockfd, level, IP_HDRINCL, (option_ptr)&on, sizeof(on)) != 0) {
+ #ifndef _WIN32
+ ::close(sockfd);
+ #else
+ ::closesocket(sockfd);
+ #endif
throw socket_open_error(make_error_string());
}