-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathStandardSocketOptions.php
More file actions
99 lines (85 loc) Β· 2.02 KB
/
StandardSocketOptions.php
File metadata and controls
99 lines (85 loc) Β· 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\net;
use PHPJava\Packages\java\lang\Object_;
// use PHPJava\Packages\java\net\SocketOption;
/**
* The `StandardSocketOptions` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class StandardSocketOptions extends Object_ // implements SocketOption
{
/**
* The network interface for Internet Protocol (IP) multicast datagrams.
*
* @var mixed $IP_MULTICAST_IF
*/
public static $IP_MULTICAST_IF = null;
/**
* Loopback for Internet Protocol (IP) multicast datagrams.
*
* @var mixed $IP_MULTICAST_LOOP
*/
public static $IP_MULTICAST_LOOP = null;
/**
* The time-to-live for Internet Protocol (IP) multicast datagrams.
*
* @var mixed $IP_MULTICAST_TTL
*/
public static $IP_MULTICAST_TTL = null;
/**
* The Type of Service (ToS) octet in the Internet Protocol (IP) header.
*
* @var mixed $IP_TOS
*/
public static $IP_TOS = null;
/**
* Allow transmission of broadcast datagrams.
*
* @var mixed $SO_BROADCAST
*/
public static $SO_BROADCAST = null;
/**
* Keep connection alive.
*
* @var mixed $SO_KEEPALIVE
*/
public static $SO_KEEPALIVE = null;
/**
* Linger on close if data is present.
*
* @var mixed $SO_LINGER
*/
public static $SO_LINGER = null;
/**
* The size of the socket receive buffer.
*
* @var mixed $SO_RCVBUF
*/
public static $SO_RCVBUF = null;
/**
* Re-use address.
*
* @var mixed $SO_REUSEADDR
*/
public static $SO_REUSEADDR = null;
/**
* Re-use port.
*
* @var mixed $SO_REUSEPORT
*/
public static $SO_REUSEPORT = null;
/**
* The size of the socket send buffer.
*
* @var mixed $SO_SNDBUF
*/
public static $SO_SNDBUF = null;
/**
* Disable the Nagle algorithm.
*
* @var mixed $TCP_NODELAY
*/
public static $TCP_NODELAY = null;
}