19 lines
988 B
C
19 lines
988 B
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Copyright © The PHP Group and Contributors. |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to the Modified BSD License that is |
|
|
| bundled with this package in the file LICENSE, and is available |
|
|
| through the World Wide Web at <https://www.php.net/license/>. |
|
|
| |
|
|
| SPDX-License-Identifier: BSD-3-Clause |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Wez Furlong <wez@thebrainroom.com> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
/* Flags for stream_socket_client */
|
|
#define PHP_STREAM_CLIENT_PERSISTENT 1
|
|
#define PHP_STREAM_CLIENT_ASYNC_CONNECT 2
|
|
#define PHP_STREAM_CLIENT_CONNECT 4
|