Support socketpairs in proc_open()

Closes GH-5777.
This commit is contained in:
Martin Schröder 2020-07-12 20:56:47 +02:00 committed by Nikita Popov
parent 1a00d015be
commit 547d98b81d
10 changed files with 301 additions and 38 deletions

View file

@ -22,6 +22,7 @@
#ifndef PHP_WIN32_SOCKETS_H
#define PHP_WIN32_SOCKETS_H
PHPAPI int socketpair_win32(int domain, int type, int protocol, SOCKET sock[2], int overlapped);
PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]);
#endif