aboutsummaryrefslogtreecommitdiffstats
path: root/util/network/pair.h
blob: 8a29be12c7e3cac253967124f224e647805ee180 (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once
 
#include "init.h" 
 
int SocketPair(SOCKET socks[2], bool overlapped, bool cloexec = false); 
 
static inline int SocketPair(SOCKET socks[2]) { 
    return SocketPair(socks, false, false);
}