summaryrefslogtreecommitdiffstats
path: root/REFLECTION
blob: 6857bcc8eb5d0b9d3bfc19fa864d8a4202a89586 (plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
Extension [ <persistent> extension #119 varnish version 1.2.6 ] {

  - Dependencies {
    Dependency [ hash (Required) ]
  }

  - Constants [19] {
    Constant [ int VARNISH_STATUS_SYNTAX ] { 100 }
    Constant [ int VARNISH_STATUS_UNKNOWN ] { 101 }
    Constant [ int VARNISH_STATUS_UNIMPL ] { 102 }
    Constant [ int VARNISH_STATUS_TOOFEW ] { 104 }
    Constant [ int VARNISH_STATUS_TOOMANY ] { 105 }
    Constant [ int VARNISH_STATUS_PARAM ] { 106 }
    Constant [ int VARNISH_STATUS_AUTH ] { 107 }
    Constant [ int VARNISH_STATUS_OK ] { 200 }
    Constant [ int VARNISH_STATUS_CANT ] { 300 }
    Constant [ int VARNISH_STATUS_COMMS ] { 400 }
    Constant [ int VARNISH_STATUS_CLOSE ] { 500 }
    Constant [ string VARNISH_CONFIG_IDENT ] { ident }
    Constant [ string VARNISH_CONFIG_HOST ] { host }
    Constant [ string VARNISH_CONFIG_PORT ] { port }
    Constant [ string VARNISH_CONFIG_TIMEOUT ] { timeout }
    Constant [ string VARNISH_CONFIG_SECRET ] { secret }
    Constant [ string VARNISH_CONFIG_COMPAT ] { compat }
    Constant [ int VARNISH_COMPAT_2 ] { 2 }
    Constant [ int VARNISH_COMPAT_3 ] { 3 }
  }

  - Classes [4] {
    Class [ <internal:varnish> class VarnishAdmin ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [21] {
        Method [ <internal:varnish, ctor> public method __construct ] {

          - Parameters [1] {
            Parameter #0 [ <optional> array $opt ]
          }
        }

        Method [ <internal:varnish> public method connect ] {

          - Parameters [0] {
          }
          - Return [ bool ]
        }

        Method [ <internal:varnish> public method auth ] {

          - Parameters [0] {
          }
          - Return [ bool ]
        }

        Method [ <internal:varnish> public method getParams ] {

          - Parameters [0] {
          }
          - Return [ array ]
        }

        Method [ <internal:varnish> public method setParam ] {

          - Parameters [2] {
            Parameter #0 [ <required> string $name ]
            Parameter #1 [ <required> string $value ]
          }
          - Return [ int ]
        }

        Method [ <internal:varnish> public method stop ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:varnish> public method start ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:varnish> public method banUrl ] {

          - Parameters [1] {
            Parameter #0 [ <required> string $regex ]
          }
          - Return [ int ]
        }

        Method [ <internal:varnish> public method ban ] {

          - Parameters [1] {
            Parameter #0 [ <required> string $regex ]
          }
          - Return [ int ]
        }

        Method [ <internal:varnish> public method isRunning ] {

          - Parameters [0] {
          }
          - Return [ bool ]
        }

        Method [ <internal:varnish> public method getPanic ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:varnish> public method clearPanic ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:varnish> public method setHost ] {

          - Parameters [1] {
            Parameter #0 [ <required> string $host ]
          }
          - Return [ void ]
        }

        Method [ <internal:varnish> public method setIdent ] {

          - Parameters [1] {
            Parameter #0 [ <required> string $ident ]
          }
          - Return [ void ]
        }

        Method [ <internal:varnish> public method setTimeout ] {

          - Parameters [1] {
            Parameter #0 [ <required> int $timeout ]
          }
          - Return [ void ]
        }

        Method [ <internal:varnish> public method setPort ] {

          - Parameters [1] {
            Parameter #0 [ <required> int $port ]
          }
          - Return [ void ]
        }

        Method [ <internal:varnish> public method setSecret ] {

          - Parameters [1] {
            Parameter #0 [ <required> string $secret ]
          }
          - Return [ void ]
        }

        Method [ <internal:varnish> public method setCompat ] {

          - Parameters [1] {
            Parameter #0 [ <required> int $compat ]
          }
          - Return [ void ]
        }

        Method [ <internal:varnish> public method getVclList ] {

          - Parameters [0] {
          }
          - Return [ array ]
        }

        Method [ <internal:varnish> public method vclUse ] {

          - Parameters [1] {
            Parameter #0 [ <required> string $name ]
          }
          - Return [ bool ]
        }

        Method [ <internal:varnish> public method disconnect ] {

          - Parameters [0] {
          }
          - Return [ bool ]
        }
      }
    }

    Class [ <internal:varnish> class VarnishStat ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [1] {
        Method [ <internal:varnish, ctor> public method __construct ] {

          - Parameters [1] {
            Parameter #0 [ <optional> array $opt ]
          }
        }
      }
    }

    Class [ <internal:varnish> class VarnishLog ] {

      - Constants [95] {
        Constant [ public int TAG_Debug ] { 1 }
        Constant [ public int TAG_Error ] { 2 }
        Constant [ public int TAG_CLI ] { 3 }
        Constant [ public int TAG_SessOpen ] { 4 }
        Constant [ public int TAG_SessClose ] { 5 }
        Constant [ public int TAG_BackendOpen ] { 6 }
        Constant [ public int TAG_BackendReuse ] { 7 }
        Constant [ public int TAG_BackendClose ] { 8 }
        Constant [ public int TAG_HttpGarbage ] { 9 }
        Constant [ public int TAG_Proxy ] { 10 }
        Constant [ public int TAG_ProxyGarbage ] { 11 }
        Constant [ public int TAG_Backend ] { 12 }
        Constant [ public int TAG_Length ] { 13 }
        Constant [ public int TAG_FetchError ] { 14 }
        Constant [ public int TAG_ReqMethod ] { 15 }
        Constant [ public int TAG_ReqURL ] { 16 }
        Constant [ public int TAG_ReqProtocol ] { 17 }
        Constant [ public int TAG_ReqStatus ] { 18 }
        Constant [ public int TAG_ReqReason ] { 19 }
        Constant [ public int TAG_ReqHeader ] { 20 }
        Constant [ public int TAG_ReqUnset ] { 21 }
        Constant [ public int TAG_ReqLost ] { 22 }
        Constant [ public int TAG_RespMethod ] { 23 }
        Constant [ public int TAG_RespURL ] { 24 }
        Constant [ public int TAG_RespProtocol ] { 25 }
        Constant [ public int TAG_RespStatus ] { 26 }
        Constant [ public int TAG_RespReason ] { 27 }
        Constant [ public int TAG_RespHeader ] { 28 }
        Constant [ public int TAG_RespUnset ] { 29 }
        Constant [ public int TAG_RespLost ] { 30 }
        Constant [ public int TAG_BereqMethod ] { 31 }
        Constant [ public int TAG_BereqURL ] { 32 }
        Constant [ public int TAG_BereqProtocol ] { 33 }
        Constant [ public int TAG_BereqStatus ] { 34 }
        Constant [ public int TAG_BereqReason ] { 35 }
        Constant [ public int TAG_BereqHeader ] { 36 }
        Constant [ public int TAG_BereqUnset ] { 37 }
        Constant [ public int TAG_BereqLost ] { 38 }
        Constant [ public int TAG_BerespMethod ] { 39 }
        Constant [ public int TAG_BerespURL ] { 40 }
        Constant [ public int TAG_BerespProtocol ] { 41 }
        Constant [ public int TAG_BerespStatus ] { 42 }
        Constant [ public int TAG_BerespReason ] { 43 }
        Constant [ public int TAG_BerespHeader ] { 44 }
        Constant [ public int TAG_BerespUnset ] { 45 }
        Constant [ public int TAG_BerespLost ] { 46 }
        Constant [ public int TAG_ObjMethod ] { 47 }
        Constant [ public int TAG_ObjURL ] { 48 }
        Constant [ public int TAG_ObjProtocol ] { 49 }
        Constant [ public int TAG_ObjStatus ] { 50 }
        Constant [ public int TAG_ObjReason ] { 51 }
        Constant [ public int TAG_ObjHeader ] { 52 }
        Constant [ public int TAG_ObjUnset ] { 53 }
        Constant [ public int TAG_ObjLost ] { 54 }
        Constant [ public int TAG_BogoHeader ] { 55 }
        Constant [ public int TAG_LostHeader ] { 56 }
        Constant [ public int TAG_TTL ] { 57 }
        Constant [ public int TAG_Fetch_Body ] { 58 }
        Constant [ public int TAG_VCL_acl ] { 59 }
        Constant [ public int TAG_VCL_call ] { 60 }
        Constant [ public int TAG_VCL_trace ] { 61 }
        Constant [ public int TAG_VCL_return ] { 62 }
        Constant [ public int TAG_ReqStart ] { 63 }
        Constant [ public int TAG_Hit ] { 64 }
        Constant [ public int TAG_HitPass ] { 65 }
        Constant [ public int TAG_ExpBan ] { 66 }
        Constant [ public int TAG_ExpKill ] { 67 }
        Constant [ public int TAG_WorkThread ] { 68 }
        Constant [ public int TAG_ESI_xmlerror ] { 69 }
        Constant [ public int TAG_Hash ] { 70 }
        Constant [ public int TAG_Backend_health ] { 71 }
        Constant [ public int TAG_VCL_Log ] { 72 }
        Constant [ public int TAG_VCL_Error ] { 73 }
        Constant [ public int TAG_Gzip ] { 74 }
        Constant [ public int TAG_Link ] { 75 }
        Constant [ public int TAG_Begin ] { 76 }
        Constant [ public int TAG_End ] { 77 }
        Constant [ public int TAG_VSL ] { 78 }
        Constant [ public int TAG_Storage ] { 79 }
        Constant [ public int TAG_Timestamp ] { 80 }
        Constant [ public int TAG_ReqAcct ] { 81 }
        Constant [ public int TAG_PipeAcct ] { 82 }
        Constant [ public int TAG_BereqAcct ] { 83 }
        Constant [ public int TAG_VfpAcct ] { 84 }
        Constant [ public int TAG_Witness ] { 85 }
        Constant [ public int TAG_BackendStart ] { 86 }
        Constant [ public int TAG_H2RxHdr ] { 87 }
        Constant [ public int TAG_H2RxBody ] { 88 }
        Constant [ public int TAG_H2TxHdr ] { 89 }
        Constant [ public int TAG_H2TxBody ] { 90 }
        Constant [ public int TAG_HitMiss ] { 91 }
        Constant [ public int TAG_Filters ] { 92 }
        Constant [ public int TAG_SessError ] { 93 }
        Constant [ public int TAG_VCL_use ] { 94 }
        Constant [ public int TAG_Notice ] { 95 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [1] {
        Method [ <internal:varnish, ctor> public method __construct ] {

          - Parameters [1] {
            Parameter #0 [ <optional> array $opt ]
          }
        }
      }
    }

    Class [ <internal:varnish> class VarnishException extends Exception implements Throwable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ <default> protected $message ]
        Property [ <default> protected $code ]
        Property [ <default> protected $file ]
        Property [ <default> protected $line ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> $message ]
            Parameter #1 [ <optional> $code ]
            Parameter #2 [ <optional> $previous ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {
        }
      }
    }
  }
}