1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace CyberLine\SystemdState\Types; |
4
|
|
|
|
5
|
|
|
class Socket extends AbstractType |
6
|
|
|
{ |
7
|
|
|
protected $Accept; |
8
|
|
|
|
9
|
|
|
/** @var array */ |
10
|
|
|
protected $After = []; |
11
|
|
|
|
12
|
|
|
protected $AmbientCapabilities; |
13
|
|
|
|
14
|
|
|
protected $Backlog; |
15
|
|
|
|
16
|
|
|
/** @var array */ |
17
|
|
|
protected $BindsTo = []; |
18
|
|
|
|
19
|
|
|
protected $BindIPv6Only; |
20
|
|
|
|
21
|
|
|
protected $BlockIOAccounting; |
22
|
|
|
|
23
|
|
|
protected $BlockIOWeight; |
24
|
|
|
|
25
|
|
|
protected $Broadcast; |
26
|
|
|
|
27
|
|
|
protected $CPUAccounting; |
28
|
|
|
|
29
|
|
|
protected $CPUQuotaPerSecUSec; |
30
|
|
|
|
31
|
|
|
protected $CPUSchedulingPolicy; |
32
|
|
|
|
33
|
|
|
protected $CPUSchedulingPriority; |
34
|
|
|
|
35
|
|
|
protected $CPUSchedulingResetOnFork; |
36
|
|
|
|
37
|
|
|
protected $CPUShares; |
38
|
|
|
|
39
|
|
|
protected $CPUUsageNSec; |
40
|
|
|
|
41
|
|
|
protected $CPUWeight; |
42
|
|
|
|
43
|
|
|
protected $CapabilityBoundingSet; |
44
|
|
|
|
45
|
|
|
/** @var array */ |
46
|
|
|
protected $ConflictedBy = []; |
47
|
|
|
|
48
|
|
|
/** @var array */ |
49
|
|
|
protected $Conflicts = []; |
50
|
|
|
|
51
|
|
|
protected $ControlPID; |
52
|
|
|
|
53
|
|
|
protected $DeferAcceptUSec; |
54
|
|
|
|
55
|
|
|
protected $Delegate; |
56
|
|
|
|
57
|
|
|
protected $DevicePolicy; |
58
|
|
|
|
59
|
|
|
protected $DirectoryMode; |
60
|
|
|
|
61
|
|
|
/** @var array */ |
62
|
|
|
protected $Documentation = []; |
63
|
|
|
|
64
|
|
|
protected $DynamicUser; |
65
|
|
|
|
66
|
|
|
protected $FileDescriptorName; |
67
|
|
|
|
68
|
|
|
protected $FragmentPath; |
69
|
|
|
|
70
|
|
|
protected $FreeBind; |
71
|
|
|
|
72
|
|
|
protected $GID; |
73
|
|
|
|
74
|
|
|
protected $IOAccounting; |
75
|
|
|
|
76
|
|
|
protected $IOScheduling; |
77
|
|
|
|
78
|
|
|
protected $IOWeight; |
79
|
|
|
|
80
|
|
|
protected $IPTOS; |
81
|
|
|
|
82
|
|
|
protected $IPTTL; |
83
|
|
|
|
84
|
|
|
protected $IgnoreSIGPIPE; |
85
|
|
|
|
86
|
|
|
protected $KeepAlive; |
87
|
|
|
|
88
|
|
|
protected $KeepAliveIntervalUSec; |
89
|
|
|
|
90
|
|
|
protected $KeepAliveProbes; |
91
|
|
|
|
92
|
|
|
protected $KeepAliveTimeUSec; |
93
|
|
|
|
94
|
|
|
protected $KillMode; |
95
|
|
|
|
96
|
|
|
protected $KillSignal; |
97
|
|
|
|
98
|
|
|
protected $LimitAS; |
99
|
|
|
|
100
|
|
|
protected $LimitASSoft; |
101
|
|
|
|
102
|
|
|
protected $LimitCORE; |
103
|
|
|
|
104
|
|
|
protected $LimitCORESoft; |
105
|
|
|
|
106
|
|
|
protected $LimitCPU; |
107
|
|
|
|
108
|
|
|
protected $LimitCPUSoft; |
109
|
|
|
|
110
|
|
|
protected $LimitDATA; |
111
|
|
|
|
112
|
|
|
protected $LimitDATASoft; |
113
|
|
|
|
114
|
|
|
protected $LimitFSIZE; |
115
|
|
|
|
116
|
|
|
protected $LimitFSIZESoft; |
117
|
|
|
|
118
|
|
|
protected $LimitLOCKS; |
119
|
|
|
|
120
|
|
|
protected $LimitLOCKSSoft; |
121
|
|
|
|
122
|
|
|
protected $LimitMEMLOCK; |
123
|
|
|
|
124
|
|
|
protected $LimitMEMLOCKSoft; |
125
|
|
|
|
126
|
|
|
protected $LimitMSGQUEUE; |
127
|
|
|
|
128
|
|
|
protected $LimitMSGQUEUESoft; |
129
|
|
|
|
130
|
|
|
protected $LimitNICE; |
131
|
|
|
|
132
|
|
|
protected $LimitNICESoft; |
133
|
|
|
|
134
|
|
|
protected $LimitNOFILE; |
135
|
|
|
|
136
|
|
|
protected $LimitNOFILESoft; |
137
|
|
|
|
138
|
|
|
protected $LimitNPROC; |
139
|
|
|
|
140
|
|
|
protected $LimitNPROCSoft; |
141
|
|
|
|
142
|
|
|
protected $LimitRSS; |
143
|
|
|
|
144
|
|
|
protected $LimitRSSSoft; |
145
|
|
|
|
146
|
|
|
protected $LimitRTPRIO; |
147
|
|
|
|
148
|
|
|
protected $LimitRTPRIOSoft; |
149
|
|
|
|
150
|
|
|
protected $LimitRTTIME; |
151
|
|
|
|
152
|
|
|
protected $LimitRTTIMESoft; |
153
|
|
|
|
154
|
|
|
protected $LimitSIGPENDING; |
155
|
|
|
|
156
|
|
|
protected $LimitSIGPENDINGSoft; |
157
|
|
|
|
158
|
|
|
protected $LimitSTACK; |
159
|
|
|
|
160
|
|
|
protected $LimitSTACKSoft; |
161
|
|
|
|
162
|
|
|
protected $ListenDatagram; |
163
|
|
|
|
164
|
|
|
protected $ListenFIFO; |
165
|
|
|
|
166
|
|
|
protected $ListenNetlink; |
167
|
|
|
|
168
|
|
|
protected $ListenSequentialPacket; |
169
|
|
|
|
170
|
|
|
protected $ListenSpecial; |
171
|
|
|
|
172
|
|
|
protected $ListenStream; |
173
|
|
|
|
174
|
|
|
protected $Mark; |
175
|
|
|
|
176
|
|
|
protected $MaxConnections; |
177
|
|
|
|
178
|
|
|
protected $MaxConnectionsPerSource; |
179
|
|
|
|
180
|
|
|
protected $MemoryAccounting; |
181
|
|
|
|
182
|
|
|
protected $MemoryCurrent; |
183
|
|
|
|
184
|
|
|
protected $MemoryDenyWriteExecute; |
185
|
|
|
|
186
|
|
|
protected $MemoryHigh; |
187
|
|
|
|
188
|
|
|
protected $MemoryLimit; |
189
|
|
|
|
190
|
|
|
protected $MemoryLow; |
191
|
|
|
|
192
|
|
|
protected $MemoryMax; |
193
|
|
|
|
194
|
|
|
protected $MemorySwapMax; |
195
|
|
|
|
196
|
|
|
protected $MessageQueueMaxMessages; |
197
|
|
|
|
198
|
|
|
protected $MessageQueueMessageSize; |
199
|
|
|
|
200
|
|
|
protected $MountFlags; |
201
|
|
|
|
202
|
|
|
protected $NAccepted; |
203
|
|
|
|
204
|
|
|
protected $NConnections; |
205
|
|
|
|
206
|
|
|
protected $Nice; |
207
|
|
|
|
208
|
|
|
protected $NoDelay; |
209
|
|
|
|
210
|
|
|
protected $NoNewPrivileges; |
211
|
|
|
|
212
|
|
|
protected $NonBlocking; |
213
|
|
|
|
214
|
|
|
protected $OOMScoreAdjust; |
215
|
|
|
|
216
|
|
|
protected $PassCredentials; |
217
|
|
|
|
218
|
|
|
protected $PassSecurity; |
219
|
|
|
|
220
|
|
|
protected $PipeSize; |
221
|
|
|
|
222
|
|
|
protected $Priority; |
223
|
|
|
|
224
|
|
|
protected $PrivateDevices; |
225
|
|
|
|
226
|
|
|
protected $PrivateNetwork; |
227
|
|
|
|
228
|
|
|
protected $PrivateTmp; |
229
|
|
|
|
230
|
|
|
protected $PrivateUsers; |
231
|
|
|
|
232
|
|
|
protected $ProtectControlGroups; |
233
|
|
|
|
234
|
|
|
protected $ProtectHome; |
235
|
|
|
|
236
|
|
|
protected $ProtectKernelModules; |
237
|
|
|
|
238
|
|
|
protected $ProtectKernelTunables; |
239
|
|
|
|
240
|
|
|
protected $ProtectSystem; |
241
|
|
|
|
242
|
|
|
protected $ReceiveBuffer; |
243
|
|
|
|
244
|
|
|
protected $RemoveIPC; |
245
|
|
|
|
246
|
|
|
protected $RemoveOnStop; |
247
|
|
|
|
248
|
|
|
/** @var array */ |
249
|
|
|
protected $RequiredBy = []; |
250
|
|
|
|
251
|
|
|
/** @var array */ |
252
|
|
|
protected $Requires = []; |
253
|
|
|
|
254
|
|
|
/** @var array */ |
255
|
|
|
protected $RequiresMountsFor = []; |
256
|
|
|
|
257
|
|
|
protected $RestrictNamespace; |
258
|
|
|
|
259
|
|
|
protected $RestrictRealtime; |
260
|
|
|
|
261
|
|
|
protected $Result; |
262
|
|
|
|
263
|
|
|
protected $ReusePort; |
264
|
|
|
|
265
|
|
|
protected $RuntimeDirectoryMode; |
266
|
|
|
|
267
|
|
|
protected $SameProcessGroup; |
268
|
|
|
|
269
|
|
|
protected $SecureBits; |
270
|
|
|
|
271
|
|
|
protected $SendBuffer; |
272
|
|
|
|
273
|
|
|
protected $SendSIGHUP; |
274
|
|
|
|
275
|
|
|
protected $SendSIGKILL; |
276
|
|
|
|
277
|
|
|
protected $SocketMode; |
278
|
|
|
|
279
|
|
|
protected $SocketProtocol; |
280
|
|
|
|
281
|
|
|
protected $StandardError; |
282
|
|
|
|
283
|
|
|
protected $StandardInput; |
284
|
|
|
|
285
|
|
|
protected $StandardOutput; |
286
|
|
|
|
287
|
|
|
protected $StartupBlockIOWeight; |
288
|
|
|
|
289
|
|
|
protected $StartupCPUShares; |
290
|
|
|
|
291
|
|
|
protected $StartupCPUWeight; |
292
|
|
|
|
293
|
|
|
protected $StartupIOWeight; |
294
|
|
|
|
295
|
|
|
protected $Symlinks; |
296
|
|
|
|
297
|
|
|
protected $SyslogFacility; |
298
|
|
|
|
299
|
|
|
protected $SyslogLevel; |
300
|
|
|
|
301
|
|
|
protected $SyslogLevelPrefix; |
302
|
|
|
|
303
|
|
|
protected $SyslogPriority; |
304
|
|
|
|
305
|
|
|
protected $SystemCallErrorNumber; |
306
|
|
|
|
307
|
|
|
protected $TTYReset; |
308
|
|
|
|
309
|
|
|
protected $TTYVHangup; |
310
|
|
|
|
311
|
|
|
protected $TTYVTDisallocate; |
312
|
|
|
|
313
|
|
|
protected $TasksAccounting; |
314
|
|
|
|
315
|
|
|
protected $TasksCurrent; |
316
|
|
|
|
317
|
|
|
protected $TasksMax; |
318
|
|
|
|
319
|
|
|
protected $TimeoutUSec; |
320
|
|
|
|
321
|
|
|
protected $TimerSlackNSec; |
322
|
|
|
|
323
|
|
|
protected $Transparent; |
324
|
|
|
|
325
|
|
|
protected $TriggerLimitBurst; |
326
|
|
|
|
327
|
|
|
protected $TriggerLimitIntervalSec; |
328
|
|
|
|
329
|
|
|
protected $TriggerLimitIntervalUSec; |
330
|
|
|
|
331
|
|
|
/** @var array */ |
332
|
|
|
protected $Triggers = []; |
333
|
|
|
|
334
|
|
|
protected $UID; |
335
|
|
|
|
336
|
|
|
protected $UMask; |
337
|
|
|
|
338
|
|
|
protected $UnitFilePreset; |
339
|
|
|
|
340
|
|
|
protected $UnitFileState; |
341
|
|
|
|
342
|
|
|
protected $UtmpMode; |
343
|
|
|
|
344
|
|
|
/** @var array */ |
345
|
|
|
protected $WantedBy = []; |
346
|
|
|
|
347
|
|
|
protected $Writable; |
348
|
|
|
} |
349
|
|
|
|