aboutsummaryrefslogtreecommitdiffstats
path: root/util/network/pair.h
blob: 747374b5dbef9086262abeea30b76b79c8f9c33d (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);
}