yajl-ruby 1.0.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of yajl-ruby might be problematic. Click here for more details.

Files changed (152) hide show
  1. data/.gitignore +12 -0
  2. data/.rspec +2 -0
  3. data/CHANGELOG.md +327 -0
  4. data/Gemfile +3 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +362 -0
  7. data/Rakefile +2 -0
  8. data/benchmark/encode.rb +72 -0
  9. data/benchmark/encode_json_and_marshal.rb +42 -0
  10. data/benchmark/encode_json_and_yaml.rb +53 -0
  11. data/benchmark/http.rb +32 -0
  12. data/benchmark/parse.rb +94 -0
  13. data/benchmark/parse_json_and_marshal.rb +50 -0
  14. data/benchmark/parse_json_and_yaml.rb +55 -0
  15. data/benchmark/parse_stream.rb +54 -0
  16. data/benchmark/subjects/item.json +1 -0
  17. data/benchmark/subjects/ohai.json +1216 -0
  18. data/benchmark/subjects/ohai.marshal_dump +0 -0
  19. data/benchmark/subjects/ohai.yml +975 -0
  20. data/benchmark/subjects/twitter_search.json +1 -0
  21. data/benchmark/subjects/twitter_stream.json +430 -0
  22. data/benchmark/subjects/unicode.json +1 -0
  23. data/examples/encoding/chunked_encoding.rb +27 -0
  24. data/examples/encoding/one_shot.rb +13 -0
  25. data/examples/encoding/to_an_io.rb +12 -0
  26. data/examples/http/twitter_search_api.rb +12 -0
  27. data/examples/http/twitter_stream_api.rb +26 -0
  28. data/examples/parsing/from_file.rb +14 -0
  29. data/examples/parsing/from_stdin.rb +9 -0
  30. data/examples/parsing/from_string.rb +13 -0
  31. data/ext/yajl/api/yajl_common.h +89 -0
  32. data/ext/yajl/api/yajl_gen.h +161 -0
  33. data/ext/yajl/api/yajl_parse.h +196 -0
  34. data/ext/yajl/api/yajl_version.h +23 -0
  35. data/ext/yajl/extconf.rb +7 -0
  36. data/ext/yajl/yajl.c +164 -0
  37. data/ext/yajl/yajl_alloc.c +65 -0
  38. data/ext/yajl/yajl_alloc.h +50 -0
  39. data/ext/yajl/yajl_buf.c +119 -0
  40. data/ext/yajl/yajl_buf.h +73 -0
  41. data/ext/yajl/yajl_bytestack.h +85 -0
  42. data/ext/yajl/yajl_encode.c +201 -0
  43. data/ext/yajl/yajl_encode.h +52 -0
  44. data/ext/yajl/yajl_ext.c +905 -0
  45. data/ext/yajl/yajl_ext.h +135 -0
  46. data/ext/yajl/yajl_gen.c +344 -0
  47. data/ext/yajl/yajl_lex.c +748 -0
  48. data/ext/yajl/yajl_lex.h +135 -0
  49. data/ext/yajl/yajl_parser.c +450 -0
  50. data/ext/yajl/yajl_parser.h +82 -0
  51. data/ext/yajl/yajl_version.c +7 -0
  52. data/lib/yajl.rb +75 -0
  53. data/lib/yajl/1.8/yajl.so +0 -0
  54. data/lib/yajl/1.9/yajl.so +0 -0
  55. data/lib/yajl/bzip2.rb +11 -0
  56. data/lib/yajl/bzip2/stream_reader.rb +31 -0
  57. data/lib/yajl/bzip2/stream_writer.rb +14 -0
  58. data/lib/yajl/deflate.rb +6 -0
  59. data/lib/yajl/deflate/stream_reader.rb +43 -0
  60. data/lib/yajl/deflate/stream_writer.rb +20 -0
  61. data/lib/yajl/gzip.rb +6 -0
  62. data/lib/yajl/gzip/stream_reader.rb +30 -0
  63. data/lib/yajl/gzip/stream_writer.rb +13 -0
  64. data/lib/yajl/http_stream.rb +212 -0
  65. data/lib/yajl/json_gem.rb +15 -0
  66. data/lib/yajl/json_gem/encoding.rb +51 -0
  67. data/lib/yajl/json_gem/parsing.rb +26 -0
  68. data/lib/yajl/version.rb +3 -0
  69. data/lib/yajl/yajl.rb +2 -0
  70. data/spec/encoding/encoding_spec.rb +271 -0
  71. data/spec/global/global_spec.rb +54 -0
  72. data/spec/http/fixtures/http.bzip2.dump +0 -0
  73. data/spec/http/fixtures/http.chunked.dump +11 -0
  74. data/spec/http/fixtures/http.deflate.dump +0 -0
  75. data/spec/http/fixtures/http.error.dump +12 -0
  76. data/spec/http/fixtures/http.gzip.dump +0 -0
  77. data/spec/http/fixtures/http.html.dump +1220 -0
  78. data/spec/http/fixtures/http.raw.dump +1226 -0
  79. data/spec/http/http_delete_spec.rb +98 -0
  80. data/spec/http/http_error_spec.rb +32 -0
  81. data/spec/http/http_get_spec.rb +109 -0
  82. data/spec/http/http_post_spec.rb +123 -0
  83. data/spec/http/http_put_spec.rb +105 -0
  84. data/spec/http/http_stream_options_spec.rb +27 -0
  85. data/spec/json_gem_compatibility/compatibility_spec.rb +203 -0
  86. data/spec/parsing/active_support_spec.rb +64 -0
  87. data/spec/parsing/chunked_spec.rb +96 -0
  88. data/spec/parsing/fixtures/fail.15.json +1 -0
  89. data/spec/parsing/fixtures/fail.16.json +1 -0
  90. data/spec/parsing/fixtures/fail.17.json +1 -0
  91. data/spec/parsing/fixtures/fail.26.json +1 -0
  92. data/spec/parsing/fixtures/fail11.json +1 -0
  93. data/spec/parsing/fixtures/fail12.json +1 -0
  94. data/spec/parsing/fixtures/fail13.json +1 -0
  95. data/spec/parsing/fixtures/fail14.json +1 -0
  96. data/spec/parsing/fixtures/fail19.json +1 -0
  97. data/spec/parsing/fixtures/fail20.json +1 -0
  98. data/spec/parsing/fixtures/fail21.json +1 -0
  99. data/spec/parsing/fixtures/fail22.json +1 -0
  100. data/spec/parsing/fixtures/fail23.json +1 -0
  101. data/spec/parsing/fixtures/fail24.json +1 -0
  102. data/spec/parsing/fixtures/fail25.json +1 -0
  103. data/spec/parsing/fixtures/fail27.json +2 -0
  104. data/spec/parsing/fixtures/fail28.json +2 -0
  105. data/spec/parsing/fixtures/fail3.json +1 -0
  106. data/spec/parsing/fixtures/fail4.json +1 -0
  107. data/spec/parsing/fixtures/fail5.json +1 -0
  108. data/spec/parsing/fixtures/fail6.json +1 -0
  109. data/spec/parsing/fixtures/fail9.json +1 -0
  110. data/spec/parsing/fixtures/pass.array.json +6 -0
  111. data/spec/parsing/fixtures/pass.codepoints_from_unicode_org.json +1 -0
  112. data/spec/parsing/fixtures/pass.contacts.json +1 -0
  113. data/spec/parsing/fixtures/pass.db100.xml.json +1 -0
  114. data/spec/parsing/fixtures/pass.db1000.xml.json +1 -0
  115. data/spec/parsing/fixtures/pass.dc_simple_with_comments.json +11 -0
  116. data/spec/parsing/fixtures/pass.deep_arrays.json +1 -0
  117. data/spec/parsing/fixtures/pass.difficult_json_c_test_case.json +1 -0
  118. data/spec/parsing/fixtures/pass.difficult_json_c_test_case_with_comments.json +1 -0
  119. data/spec/parsing/fixtures/pass.doubles.json +1 -0
  120. data/spec/parsing/fixtures/pass.empty_array.json +1 -0
  121. data/spec/parsing/fixtures/pass.empty_string.json +1 -0
  122. data/spec/parsing/fixtures/pass.escaped_bulgarian.json +4 -0
  123. data/spec/parsing/fixtures/pass.escaped_foobar.json +1 -0
  124. data/spec/parsing/fixtures/pass.item.json +1 -0
  125. data/spec/parsing/fixtures/pass.json-org-sample1.json +23 -0
  126. data/spec/parsing/fixtures/pass.json-org-sample2.json +11 -0
  127. data/spec/parsing/fixtures/pass.json-org-sample3.json +26 -0
  128. data/spec/parsing/fixtures/pass.json-org-sample4-nows.json +88 -0
  129. data/spec/parsing/fixtures/pass.json-org-sample4.json +89 -0
  130. data/spec/parsing/fixtures/pass.json-org-sample5.json +27 -0
  131. data/spec/parsing/fixtures/pass.map-spain.xml.json +1 -0
  132. data/spec/parsing/fixtures/pass.ns-invoice100.xml.json +1 -0
  133. data/spec/parsing/fixtures/pass.ns-soap.xml.json +1 -0
  134. data/spec/parsing/fixtures/pass.numbers-fp-4k.json +6 -0
  135. data/spec/parsing/fixtures/pass.numbers-fp-64k.json +61 -0
  136. data/spec/parsing/fixtures/pass.numbers-int-4k.json +11 -0
  137. data/spec/parsing/fixtures/pass.numbers-int-64k.json +154 -0
  138. data/spec/parsing/fixtures/pass.twitter-search.json +1 -0
  139. data/spec/parsing/fixtures/pass.twitter-search2.json +1 -0
  140. data/spec/parsing/fixtures/pass.unicode.json +3315 -0
  141. data/spec/parsing/fixtures/pass.yelp.json +1 -0
  142. data/spec/parsing/fixtures/pass1.json +56 -0
  143. data/spec/parsing/fixtures/pass2.json +1 -0
  144. data/spec/parsing/fixtures/pass3.json +6 -0
  145. data/spec/parsing/fixtures_spec.rb +40 -0
  146. data/spec/parsing/one_off_spec.rb +85 -0
  147. data/spec/rcov.opts +3 -0
  148. data/spec/spec_helper.rb +16 -0
  149. data/tasks/compile.rake +35 -0
  150. data/tasks/rspec.rake +16 -0
  151. data/yajl-ruby.gemspec +24 -0
  152. metadata +335 -0
@@ -0,0 +1 @@
1
+ {"item": {"name": "generated", "cached_tag_list": "", "updated_at": "2009-03-24T05:25:09Z", "updated_by_id": null, "price": 1.99, "delta": false, "cost": 0.597, "account_id": 16, "unit": null, "import_tag": null, "taxable": true, "id": 1, "created_by_id": null, "description": null, "company_id": 0, "sku": "06317-0306", "created_at": "2009-03-24T05:25:09Z", "active": true}}
@@ -0,0 +1,1216 @@
1
+ {
2
+ "command": {
3
+ "ps": "ps -ef"
4
+ },
5
+ "kernel": {
6
+ "modules": {
7
+ "org.virtualbox.kext.VBoxDrv": {
8
+ "size": 118784,
9
+ "version": "2.2.0",
10
+ "index": "114",
11
+ "refcount": "3"
12
+ },
13
+ "com.cisco.nke.ipsec": {
14
+ "size": 454656,
15
+ "version": "2.0.1",
16
+ "index": "111",
17
+ "refcount": "0"
18
+ },
19
+ "com.apple.driver.AppleAPIC": {
20
+ "size": 12288,
21
+ "version": "1.4",
22
+ "index": "26",
23
+ "refcount": "0"
24
+ },
25
+ "com.apple.driver.AirPort.Atheros": {
26
+ "size": 593920,
27
+ "version": "318.8.3",
28
+ "index": "88",
29
+ "refcount": "0"
30
+ },
31
+ "com.apple.driver.AppleIntelCPUPowerManagement": {
32
+ "size": 102400,
33
+ "version": "59.0.1",
34
+ "index": "22",
35
+ "refcount": "0"
36
+ },
37
+ "com.apple.iokit.IOStorageFamily": {
38
+ "size": 98304,
39
+ "version": "1.5.5",
40
+ "index": "44",
41
+ "refcount": "9"
42
+ },
43
+ "com.apple.iokit.IOATAPIProtocolTransport": {
44
+ "size": 16384,
45
+ "version": "1.5.2",
46
+ "index": "52",
47
+ "refcount": "0"
48
+ },
49
+ "com.apple.iokit.IOPCIFamily": {
50
+ "size": 65536,
51
+ "version": "2.5",
52
+ "index": "17",
53
+ "refcount": "18"
54
+ },
55
+ "com.apple.driver.AppleHPET": {
56
+ "size": 12288,
57
+ "version": "1.3",
58
+ "index": "33",
59
+ "refcount": "0"
60
+ },
61
+ "com.apple.driver.AppleUSBHub": {
62
+ "size": 49152,
63
+ "version": "3.2.7",
64
+ "index": "47",
65
+ "refcount": "0"
66
+ },
67
+ "com.apple.iokit.IOFireWireFamily": {
68
+ "size": 258048,
69
+ "version": "3.4.6",
70
+ "index": "49",
71
+ "refcount": "2"
72
+ },
73
+ "com.apple.driver.AppleUSBComposite": {
74
+ "size": 16384,
75
+ "version": "3.2.0",
76
+ "index": "60",
77
+ "refcount": "1"
78
+ },
79
+ "com.apple.driver.AppleIntelPIIXATA": {
80
+ "size": 36864,
81
+ "version": "2.0.0",
82
+ "index": "41",
83
+ "refcount": "0"
84
+ },
85
+ "com.apple.driver.AppleSmartBatteryManager": {
86
+ "size": 28672,
87
+ "version": "158.6.0",
88
+ "index": "32",
89
+ "refcount": "0"
90
+ },
91
+ "com.apple.filesystems.udf": {
92
+ "size": 233472,
93
+ "version": "2.0.2",
94
+ "index": "119",
95
+ "refcount": "0"
96
+ },
97
+ "com.apple.iokit.IOSMBusFamily": {
98
+ "size": 12288,
99
+ "version": "1.1",
100
+ "index": "27",
101
+ "refcount": "2"
102
+ },
103
+ "com.apple.iokit.IOACPIFamily": {
104
+ "size": 16384,
105
+ "version": "1.2.0",
106
+ "index": "18",
107
+ "refcount": "10"
108
+ },
109
+ "foo.tap": {
110
+ "size": 24576,
111
+ "version": "1.0",
112
+ "index": "113",
113
+ "refcount": "0"
114
+ },
115
+ "com.vmware.kext.vmx86": {
116
+ "size": 864256,
117
+ "version": "2.0.4",
118
+ "index": "104",
119
+ "refcount": "0"
120
+ },
121
+ "com.apple.iokit.CHUDUtils": {
122
+ "size": 28672,
123
+ "version": "200",
124
+ "index": "98",
125
+ "refcount": "0"
126
+ },
127
+ "org.virtualbox.kext.VBoxNetAdp": {
128
+ "size": 8192,
129
+ "version": "2.2.0",
130
+ "index": "117",
131
+ "refcount": "0"
132
+ },
133
+ "com.apple.filesystems.autofs": {
134
+ "size": 45056,
135
+ "version": "2.0.1",
136
+ "index": "109",
137
+ "refcount": "0"
138
+ },
139
+ "com.vmware.kext.vmnet": {
140
+ "size": 36864,
141
+ "version": "2.0.4",
142
+ "index": "108",
143
+ "refcount": "0"
144
+ },
145
+ "com.apple.driver.AppleACPIButtons": {
146
+ "size": 16384,
147
+ "version": "1.2.4",
148
+ "index": "30",
149
+ "refcount": "0"
150
+ },
151
+ "com.apple.driver.AppleFWOHCI": {
152
+ "size": 139264,
153
+ "version": "3.7.2",
154
+ "index": "50",
155
+ "refcount": "0"
156
+ },
157
+ "com.apple.iokit.IOSCSIArchitectureModelFamily": {
158
+ "size": 102400,
159
+ "version": "2.0.5",
160
+ "index": "51",
161
+ "refcount": "4"
162
+ },
163
+ "com.apple.iokit.IOSCSIBlockCommandsDevice": {
164
+ "size": 90112,
165
+ "version": "2.0.5",
166
+ "index": "57",
167
+ "refcount": "1"
168
+ },
169
+ "com.apple.driver.AppleACPIPCI": {
170
+ "size": 12288,
171
+ "version": "1.2.4",
172
+ "index": "31",
173
+ "refcount": "0"
174
+ },
175
+ "com.apple.security.seatbelt": {
176
+ "size": 98304,
177
+ "version": "107.10",
178
+ "index": "25",
179
+ "refcount": "0"
180
+ },
181
+ "com.apple.driver.AppleUpstreamUserClient": {
182
+ "size": 16384,
183
+ "version": "2.7.2",
184
+ "index": "100",
185
+ "refcount": "0"
186
+ },
187
+ "com.apple.kext.OSvKernDSPLib": {
188
+ "size": 12288,
189
+ "version": "1.1",
190
+ "index": "79",
191
+ "refcount": "1"
192
+ },
193
+ "com.apple.iokit.IOBDStorageFamily": {
194
+ "size": 20480,
195
+ "version": "1.5",
196
+ "index": "58",
197
+ "refcount": "1"
198
+ },
199
+ "com.apple.iokit.IOGraphicsFamily": {
200
+ "size": 118784,
201
+ "version": "1.7.1",
202
+ "index": "70",
203
+ "refcount": "5"
204
+ },
205
+ "com.apple.iokit.IONetworkingFamily": {
206
+ "size": 90112,
207
+ "version": "1.6.1",
208
+ "index": "82",
209
+ "refcount": "4"
210
+ },
211
+ "com.apple.iokit.IOATAFamily": {
212
+ "size": 53248,
213
+ "version": "2.0.0",
214
+ "index": "40",
215
+ "refcount": "2"
216
+ },
217
+ "com.apple.iokit.IOUSBHIDDriver": {
218
+ "size": 20480,
219
+ "version": "3.2.2",
220
+ "index": "63",
221
+ "refcount": "2"
222
+ },
223
+ "org.virtualbox.kext.VBoxUSB": {
224
+ "size": 28672,
225
+ "version": "2.2.0",
226
+ "index": "115",
227
+ "refcount": "0"
228
+ },
229
+ "com.vmware.kext.vmioplug": {
230
+ "size": 24576,
231
+ "version": "2.0.4",
232
+ "index": "107",
233
+ "refcount": "0"
234
+ },
235
+ "com.apple.security.TMSafetyNet": {
236
+ "size": 12288,
237
+ "version": "3",
238
+ "index": "23",
239
+ "refcount": "0"
240
+ },
241
+ "com.apple.iokit.IONDRVSupport": {
242
+ "size": 57344,
243
+ "version": "1.7.1",
244
+ "index": "71",
245
+ "refcount": "3"
246
+ },
247
+ "com.apple.BootCache": {
248
+ "size": 20480,
249
+ "version": "30.3",
250
+ "index": "20",
251
+ "refcount": "0"
252
+ },
253
+ "com.apple.iokit.IOUSBUserClient": {
254
+ "size": 8192,
255
+ "version": "3.2.4",
256
+ "index": "46",
257
+ "refcount": "1"
258
+ },
259
+ "com.apple.iokit.IOSCSIMultimediaCommandsDevice": {
260
+ "size": 90112,
261
+ "version": "2.0.5",
262
+ "index": "59",
263
+ "refcount": "0"
264
+ },
265
+ "com.apple.driver.AppleIRController": {
266
+ "size": 20480,
267
+ "version": "110",
268
+ "index": "78",
269
+ "refcount": "0"
270
+ },
271
+ "com.apple.driver.AudioIPCDriver": {
272
+ "size": 16384,
273
+ "version": "1.0.5",
274
+ "index": "81",
275
+ "refcount": "0"
276
+ },
277
+ "org.virtualbox.kext.VBoxNetFlt": {
278
+ "size": 16384,
279
+ "version": "2.2.0",
280
+ "index": "116",
281
+ "refcount": "0"
282
+ },
283
+ "com.apple.driver.AppleLPC": {
284
+ "size": 12288,
285
+ "version": "1.2.11",
286
+ "index": "73",
287
+ "refcount": "0"
288
+ },
289
+ "com.apple.iokit.CHUDKernLib": {
290
+ "size": 20480,
291
+ "version": "196",
292
+ "index": "93",
293
+ "refcount": "2"
294
+ },
295
+ "com.apple.iokit.CHUDProf": {
296
+ "size": 49152,
297
+ "version": "207",
298
+ "index": "97",
299
+ "refcount": "0"
300
+ },
301
+ "com.apple.NVDAResman": {
302
+ "size": 2478080,
303
+ "version": "5.3.6",
304
+ "index": "90",
305
+ "refcount": "2"
306
+ },
307
+ "com.apple.driver.AppleACPIEC": {
308
+ "size": 20480,
309
+ "version": "1.2.4",
310
+ "index": "28",
311
+ "refcount": "0"
312
+ },
313
+ "foo.tun": {
314
+ "size": 24576,
315
+ "version": "1.0",
316
+ "index": "118",
317
+ "refcount": "0"
318
+ },
319
+ "com.apple.iokit.IOSerialFamily": {
320
+ "size": 36864,
321
+ "version": "9.3",
322
+ "index": "102",
323
+ "refcount": "1"
324
+ },
325
+ "com.apple.GeForce": {
326
+ "size": 622592,
327
+ "version": "5.3.6",
328
+ "index": "96",
329
+ "refcount": "0"
330
+ },
331
+ "com.apple.iokit.IOCDStorageFamily": {
332
+ "size": 32768,
333
+ "version": "1.5",
334
+ "index": "55",
335
+ "refcount": "3"
336
+ },
337
+ "com.apple.driver.AppleUSBEHCI": {
338
+ "size": 73728,
339
+ "version": "3.2.5",
340
+ "index": "39",
341
+ "refcount": "0"
342
+ },
343
+ "com.apple.nvidia.nv50hal": {
344
+ "size": 2445312,
345
+ "version": "5.3.6",
346
+ "index": "91",
347
+ "refcount": "0"
348
+ },
349
+ "com.apple.driver.AppleSMBIOS": {
350
+ "size": 16384,
351
+ "version": "1.1.1",
352
+ "index": "29",
353
+ "refcount": "0"
354
+ },
355
+ "com.apple.driver.AppleBacklight": {
356
+ "size": 16384,
357
+ "version": "1.4.4",
358
+ "index": "72",
359
+ "refcount": "0"
360
+ },
361
+ "com.apple.driver.AppleACPIPlatform": {
362
+ "size": 253952,
363
+ "version": "1.2.4",
364
+ "index": "19",
365
+ "refcount": "3"
366
+ },
367
+ "com.apple.iokit.SCSITaskUserClient": {
368
+ "size": 24576,
369
+ "version": "2.0.5",
370
+ "index": "54",
371
+ "refcount": "0"
372
+ },
373
+ "com.apple.iokit.IOHIDFamily": {
374
+ "size": 233472,
375
+ "version": "1.5.3",
376
+ "index": "21",
377
+ "refcount": "7"
378
+ },
379
+ "com.apple.driver.DiskImages": {
380
+ "size": 65536,
381
+ "version": "195.2.2",
382
+ "index": "101",
383
+ "refcount": "0"
384
+ },
385
+ "com.apple.iokit.IODVDStorageFamily": {
386
+ "size": 24576,
387
+ "version": "1.5",
388
+ "index": "56",
389
+ "refcount": "2"
390
+ },
391
+ "com.apple.driver.XsanFilter": {
392
+ "size": 20480,
393
+ "version": "2.7.91",
394
+ "index": "53",
395
+ "refcount": "0"
396
+ },
397
+ "com.apple.driver.AppleEFIRuntime": {
398
+ "size": 12288,
399
+ "version": "1.2.0",
400
+ "index": "35",
401
+ "refcount": "1"
402
+ },
403
+ "com.apple.driver.AppleRTC": {
404
+ "size": 20480,
405
+ "version": "1.2.3",
406
+ "index": "34",
407
+ "refcount": "0"
408
+ },
409
+ "com.apple.iokit.IOFireWireIP": {
410
+ "size": 36864,
411
+ "version": "1.7.6",
412
+ "index": "83",
413
+ "refcount": "0"
414
+ },
415
+ "com.vmware.kext.vmci": {
416
+ "size": 45056,
417
+ "version": "2.0.4",
418
+ "index": "106",
419
+ "refcount": "0"
420
+ },
421
+ "com.apple.iokit.IO80211Family": {
422
+ "size": 126976,
423
+ "version": "215.1",
424
+ "index": "87",
425
+ "refcount": "1"
426
+ },
427
+ "com.apple.nke.applicationfirewall": {
428
+ "size": 32768,
429
+ "version": "1.0.77",
430
+ "index": "24",
431
+ "refcount": "0"
432
+ },
433
+ "com.apple.iokit.IOAHCIBlockStorage": {
434
+ "size": 69632,
435
+ "version": "1.2.0",
436
+ "index": "48",
437
+ "refcount": "0"
438
+ },
439
+ "com.apple.driver.AppleUSBUHCI": {
440
+ "size": 57344,
441
+ "version": "3.2.5",
442
+ "index": "38",
443
+ "refcount": "0"
444
+ },
445
+ "com.apple.iokit.IOAHCIFamily": {
446
+ "size": 24576,
447
+ "version": "1.5.0",
448
+ "index": "42",
449
+ "refcount": "2"
450
+ },
451
+ "com.apple.driver.AppleAHCIPort": {
452
+ "size": 53248,
453
+ "version": "1.5.2",
454
+ "index": "43",
455
+ "refcount": "0"
456
+ },
457
+ "com.apple.driver.AppleEFINVRAM": {
458
+ "size": 24576,
459
+ "version": "1.2.0",
460
+ "index": "36",
461
+ "refcount": "0"
462
+ },
463
+ "com.apple.iokit.IOUSBFamily": {
464
+ "size": 167936,
465
+ "version": "3.2.7",
466
+ "index": "37",
467
+ "refcount": "13"
468
+ },
469
+ "com.apple.driver.AppleUSBMergeNub": {
470
+ "size": 12288,
471
+ "version": "3.2.4",
472
+ "index": "61",
473
+ "refcount": "0"
474
+ }
475
+ },
476
+ "machine": "i386",
477
+ "name": "Darwin",
478
+ "os": "Darwin",
479
+ "version": "Darwin Kernel Version 9.6.0: Mon Nov 24 17:37:00 PST 2008; root:xnu-1228.9.59~1\/RELEASE_I386",
480
+ "release": "9.6.0"
481
+ },
482
+ "platform_version": "10.5.6",
483
+ "platform": "mac_os_x",
484
+ "ipaddress": "192.168.88.1",
485
+ "keys": {
486
+ "ssh": {
487
+ "host_dsa_public": "private",
488
+ "host_rsa_public": "private"
489
+ }
490
+ },
491
+ "network": {
492
+ "settings": {
493
+ "net.inet6.ip6.forwarding": "0",
494
+ "net.inet.ip.dummynet.debug": "0",
495
+ "net.inet.ip.rtexpire": "10",
496
+ "net.inet6.ipsec6.esp_trans_deflev": "1",
497
+ "net.inet.tcp.tcbhashsize": "4096",
498
+ "net.key.esp_auth": "0",
499
+ "net.inet6.ip6.hlim": "64",
500
+ "net.inet.ip.fw.dyn_fin_lifetime": "1",
501
+ "net.inet.ip.fw.dyn_udp_lifetime": "10",
502
+ "net.inet.icmp.bmcastecho": "1",
503
+ "net.athforceBias": "2 2",
504
+ "net.athbgscan": "1 1",
505
+ "net.inet.tcp.reass.maxsegments": "2048",
506
+ "net.inet6.ip6.auto_flowlabel": "1",
507
+ "net.inet6.ip6.rtmaxcache": "128",
508
+ "net.inet.tcp.sendspace": "131072",
509
+ "net.inet.tcp.keepinit": "75000",
510
+ "net.inet.ip.dummynet.max_chain_len": "16",
511
+ "net.inet.tcp.rfc1644": "0",
512
+ "net.inet.ip.fw.curr_dyn_buckets": "256",
513
+ "net.inet.ip.dummynet.ready_heap": "0",
514
+ "net.inet.ip.portrange.first": "49152",
515
+ "net.inet.tcp.background_io_trigger": "5",
516
+ "net.link.ether.inet.host_down_time": "20",
517
+ "net.inet6.ipsec6.def_policy": "1",
518
+ "net.inet6.ipsec6.ecn": "0",
519
+ "net.inet.ip.fastforwarding": "0",
520
+ "net.athaddbaignore": "0 0",
521
+ "net.inet6.ip6.v6only": "0",
522
+ "net.inet.tcp.sack": "1",
523
+ "net.inet6.ip6.rtexpire": "3600",
524
+ "net.link.ether.inet.proxyall": "0",
525
+ "net.inet6.ip6.keepfaith": "0",
526
+ "net.key.spi_trycnt": "1000",
527
+ "net.link.ether.inet.prune_intvl": "300",
528
+ "net.inet.tcp.ecn_initiate_out": "0",
529
+ "net.inet.ip.fw.dyn_rst_lifetime": "1",
530
+ "net.local.stream.sendspace": "8192",
531
+ "net.inet.tcp.socket_unlocked_on_output": "1",
532
+ "net.inet.ip.fw.verbose_limit": "0",
533
+ "net.local.dgram.recvspace": "4096",
534
+ "net.inet.ipsec.debug": "0",
535
+ "net.link.ether.inet.log_arp_warnings": "0",
536
+ "net.inet.tcp.ecn_negotiate_in": "0",
537
+ "net.inet.tcp.rfc3465": "1",
538
+ "net.inet.tcp.icmp_may_rst": "1",
539
+ "net.link.ether.inet.sendllconflict": "0",
540
+ "net.inet.ipsec.ah_offsetmask": "0",
541
+ "net.key.blockacq_count": "10",
542
+ "net.inet.tcp.delayed_ack": "3",
543
+ "net.inet.ip.fw.verbose": "2",
544
+ "net.inet.ip.fw.dyn_count": "0",
545
+ "net.inet.tcp.slowlink_wsize": "8192",
546
+ "net.inet6.ip6.fw.enable": "1",
547
+ "net.inet.ip.portrange.hilast": "65535",
548
+ "net.inet.icmp.maskrepl": "0",
549
+ "net.link.ether.inet.apple_hwcksum_rx": "1",
550
+ "net.inet.tcp.drop_synfin": "1",
551
+ "net.key.spi_maxval": "268435455",
552
+ "net.inet.ipsec.ecn": "0",
553
+ "net.inet.ip.fw.dyn_keepalive": "1",
554
+ "net.key.int_random": "60",
555
+ "net.key.debug": "0",
556
+ "net.inet.ip.dummynet.curr_time": "0",
557
+ "net.inet.udp.blackhole": "0",
558
+ "net.athaggrqmin": "1 1",
559
+ "net.athppmenable": "1 1",
560
+ "net.inet.ip.fw.dyn_syn_lifetime": "20",
561
+ "net.inet.tcp.keepidle": "7200000",
562
+ "net.inet6.ip6.tempvltime": "604800",
563
+ "net.inet.tcp.recvspace": "358400",
564
+ "net.inet.tcp.keepintvl": "75000",
565
+ "net.inet.udp.maxdgram": "9216",
566
+ "net.inet.ip.maxchainsent": "0",
567
+ "net.inet.ipsec.esp_net_deflev": "1",
568
+ "net.inet6.icmp6.nd6_useloopback": "1",
569
+ "net.inet.tcp.slowstart_flightsize": "1",
570
+ "net.inet.ip.fw.debug": "0",
571
+ "net.inet.ip.linklocal.in.allowbadttl": "1",
572
+ "net.key.spi_minval": "256",
573
+ "net.inet.ip.forwarding": "0",
574
+ "net.inet.tcp.v6mssdflt": "1024",
575
+ "net.key.larval_lifetime": "30",
576
+ "net.inet6.ip6.fw.verbose_limit": "0",
577
+ "net.inet.ip.dummynet.red_lookup_depth": "256",
578
+ "net.inet.tcp.pcbcount": "36",
579
+ "net.inet.ip.fw.dyn_ack_lifetime": "300",
580
+ "net.inet.ip.portrange.lowlast": "600",
581
+ "net.athCCAThreshold": "28 28",
582
+ "net.link.ether.inet.useloopback": "1",
583
+ "net.athqdepth": "0 0",
584
+ "net.inet.ip.ttl": "64",
585
+ "net.inet.ip.rtmaxcache": "128",
586
+ "net.inet.ipsec.bypass": "0",
587
+ "net.inet6.icmp6.nd6_debug": "0",
588
+ "net.inet.ip.use_route_genid": "1",
589
+ "net.inet6.icmp6.rediraccept": "1",
590
+ "net.inet.ip.fw.static_count": "1",
591
+ "net.inet6.ip6.fw.debug": "0",
592
+ "net.inet.udp.pcbcount": "104",
593
+ "net.inet.ipsec.esp_randpad": "-1",
594
+ "net.inet6.icmp6.nd6_maxnudhint": "0",
595
+ "net.inet.tcp.always_keepalive": "0",
596
+ "net.inet.udp.checksum": "1",
597
+ "net.link.ether.inet.keep_announcements": "1",
598
+ "net.athfixedDropThresh": "150 150",
599
+ "net.inet6.ip6.kame_version": "20010528\/apple-darwin",
600
+ "net.inet.ip.fw.dyn_max": "4096",
601
+ "net.inet.udp.log_in_vain": "0",
602
+ "net.inet6.icmp6.nd6_mmaxtries": "3",
603
+ "net.inet.ip.rtminexpire": "10",
604
+ "net.inet.ip.fw.dyn_buckets": "256",
605
+ "net.inet6.ip6.accept_rtadv": "0",
606
+ "net.inet6.ip6.rr_prune": "5",
607
+ "net.key.ah_keymin": "128",
608
+ "net.inet.ip.redirect": "1",
609
+ "net.inet.tcp.sack_globalmaxholes": "65536",
610
+ "net.inet.ip.keepfaith": "0",
611
+ "net.inet.ip.dummynet.expire": "1",
612
+ "net.inet.ip.gifttl": "30",
613
+ "net.inet.ip.portrange.last": "65535",
614
+ "net.inet.ipsec.ah_net_deflev": "1",
615
+ "net.inet6.icmp6.nd6_delay": "5",
616
+ "net.inet.tcp.packetchain": "50",
617
+ "net.inet6.ip6.hdrnestlimit": "50",
618
+ "net.inet.tcp.newreno": "0",
619
+ "net.inet6.ip6.dad_count": "1",
620
+ "net.inet6.ip6.auto_linklocal": "1",
621
+ "net.inet6.ip6.temppltime": "86400",
622
+ "net.inet.tcp.strict_rfc1948": "0",
623
+ "net.athdupie": "1 1",
624
+ "net.inet.ip.dummynet.red_max_pkt_size": "1500",
625
+ "net.inet.ip.maxfrags": "2048",
626
+ "net.inet.tcp.log_in_vain": "0",
627
+ "net.inet.tcp.rfc1323": "1",
628
+ "net.inet.ip.subnets_are_local": "0",
629
+ "net.inet.ip.dummynet.search_steps": "0",
630
+ "net.inet.icmp.icmplim": "250",
631
+ "net.link.ether.inet.apple_hwcksum_tx": "1",
632
+ "net.inet6.icmp6.redirtimeout": "600",
633
+ "net.inet.ipsec.ah_cleartos": "1",
634
+ "net.inet6.ip6.log_interval": "5",
635
+ "net.link.ether.inet.max_age": "1200",
636
+ "net.inet.ip.fw.enable": "1",
637
+ "net.inet6.ip6.redirect": "1",
638
+ "net.athaggrfmax": "28 28",
639
+ "net.inet.ip.maxfragsperpacket": "128",
640
+ "net.inet6.ip6.use_deprecated": "1",
641
+ "net.link.generic.system.dlil_input_sanity_check": "0",
642
+ "net.inet.tcp.sack_globalholes": "0",
643
+ "net.inet.tcp.reass.cursegments": "0",
644
+ "net.inet6.icmp6.nodeinfo": "3",
645
+ "net.local.inflight": "0",
646
+ "net.inet.ip.dummynet.hash_size": "64",
647
+ "net.inet.ip.dummynet.red_avg_pkt_size": "512",
648
+ "net.inet.ipsec.dfbit": "0",
649
+ "net.inet.tcp.reass.overflows": "0",
650
+ "net.inet.tcp.rexmt_thresh": "2",
651
+ "net.inet6.ip6.maxfrags": "8192",
652
+ "net.inet6.ip6.rtminexpire": "10",
653
+ "net.inet6.ipsec6.esp_net_deflev": "1",
654
+ "net.inet.tcp.blackhole": "0",
655
+ "net.key.esp_keymin": "256",
656
+ "net.inet.ip.check_interface": "0",
657
+ "net.inet.tcp.minmssoverload": "0",
658
+ "net.link.ether.inet.maxtries": "5",
659
+ "net.inet.tcp.do_tcpdrain": "0",
660
+ "net.inet.ipsec.esp_port": "4500",
661
+ "net.inet6.ipsec6.ah_net_deflev": "1",
662
+ "net.inet.ip.dummynet.extract_heap": "0",
663
+ "net.inet.tcp.path_mtu_discovery": "1",
664
+ "net.inet.ip.intr_queue_maxlen": "50",
665
+ "net.inet.ipsec.def_policy": "1",
666
+ "net.inet.ip.fw.autoinc_step": "100",
667
+ "net.inet.ip.accept_sourceroute": "0",
668
+ "net.inet.raw.maxdgram": "8192",
669
+ "net.inet.ip.maxfragpackets": "1024",
670
+ "net.inet.ip.fw.one_pass": "0",
671
+ "net.appletalk.routermix": "2000",
672
+ "net.inet.tcp.tcp_lq_overflow": "1",
673
+ "net.link.generic.system.ifcount": "9",
674
+ "net.link.ether.inet.send_conflicting_probes": "1",
675
+ "net.inet.tcp.background_io_enabled": "1",
676
+ "net.inet6.ipsec6.debug": "0",
677
+ "net.inet.tcp.win_scale_factor": "3",
678
+ "net.key.natt_keepalive_interval": "20",
679
+ "net.inet.tcp.msl": "15000",
680
+ "net.inet.ip.portrange.hifirst": "49152",
681
+ "net.inet.ipsec.ah_trans_deflev": "1",
682
+ "net.inet.tcp.rtt_min": "1",
683
+ "net.inet6.ip6.defmcasthlim": "1",
684
+ "net.inet6.icmp6.nd6_prune": "1",
685
+ "net.inet6.ip6.fw.verbose": "0",
686
+ "net.inet.ip.portrange.lowfirst": "1023",
687
+ "net.inet.tcp.maxseg_unacked": "8",
688
+ "net.local.dgram.maxdgram": "2048",
689
+ "net.key.blockacq_lifetime": "20",
690
+ "net.inet.tcp.sack_maxholes": "128",
691
+ "net.inet6.ip6.maxfragpackets": "1024",
692
+ "net.inet6.ip6.use_tempaddr": "0",
693
+ "net.athpowermode": "0 0",
694
+ "net.inet.udp.recvspace": "73728",
695
+ "net.inet.tcp.isn_reseed_interval": "0",
696
+ "net.inet.tcp.local_slowstart_flightsize": "8",
697
+ "net.inet.ip.dummynet.searches": "0",
698
+ "net.inet.ip.intr_queue_drops": "0",
699
+ "net.link.generic.system.multi_threaded_input": "1",
700
+ "net.inet.raw.recvspace": "8192",
701
+ "net.inet.ipsec.esp_trans_deflev": "1",
702
+ "net.key.prefered_oldsa": "0",
703
+ "net.local.stream.recvspace": "8192",
704
+ "net.inet.tcp.sockthreshold": "64",
705
+ "net.inet6.icmp6.nd6_umaxtries": "3",
706
+ "net.pstimeout": "20 20",
707
+ "net.inet.ip.sourceroute": "0",
708
+ "net.inet.ip.fw.dyn_short_lifetime": "5",
709
+ "net.inet.tcp.minmss": "216",
710
+ "net.inet6.ip6.gifhlim": "0",
711
+ "net.athvendorie": "1 1",
712
+ "net.inet.ip.check_route_selfref": "1",
713
+ "net.inet6.icmp6.errppslimit": "100",
714
+ "net.inet.tcp.mssdflt": "512",
715
+ "net.inet.icmp.log_redirect": "0",
716
+ "net.inet6.ipsec6.ah_trans_deflev": "1",
717
+ "net.inet6.ipsec6.esp_randpad": "-1",
718
+ "net.inet.icmp.drop_redirect": "0",
719
+ "net.inet.icmp.timestamp": "0",
720
+ "net.inet.ip.random_id": "1"
721
+ },
722
+ "interfaces": {
723
+ "vmnet1": {
724
+ "flags": [
725
+ "UP",
726
+ "BROADCAST",
727
+ "SMART",
728
+ "RUNNING",
729
+ "SIMPLEX",
730
+ "MULTICAST"
731
+ ],
732
+ "addresses": [
733
+ {
734
+ "broadcast": "192.168.88.255",
735
+ "netmask": "255.255.255.0",
736
+ "family": "inet",
737
+ "address": "192.168.88.1"
738
+ },
739
+ {
740
+ "family": "lladdr",
741
+ "address": "private"
742
+ }
743
+ ],
744
+ "number": "1",
745
+ "mtu": "1500",
746
+ "type": "vmnet",
747
+ "encapsulation": "Ethernet"
748
+ },
749
+ "stf0": {
750
+ "flags": [
751
+
752
+ ],
753
+ "number": "0",
754
+ "mtu": "1280",
755
+ "type": "stf",
756
+ "encapsulation": "6to4"
757
+ },
758
+ "vboxnet0": {
759
+ "flags": [
760
+ "BROADCAST",
761
+ "RUNNING",
762
+ "SIMPLEX",
763
+ "MULTICAST"
764
+ ],
765
+ "addresses": [
766
+ {
767
+ "family": "lladdr",
768
+ "address": "private"
769
+ }
770
+ ],
771
+ "number": "0",
772
+ "mtu": "1500",
773
+ "type": "vboxnet",
774
+ "encapsulation": "Ethernet"
775
+ },
776
+ "lo0": {
777
+ "flags": [
778
+ "UP",
779
+ "LOOPBACK",
780
+ "RUNNING",
781
+ "MULTICAST"
782
+ ],
783
+ "addresses": [
784
+ {
785
+ "scope": "Link",
786
+ "prefixlen": "64",
787
+ "family": "inet6",
788
+ "address": "fe80::1"
789
+ },
790
+ {
791
+ "netmask": "255.0.0.0",
792
+ "family": "inet",
793
+ "address": "127.0.0.1"
794
+ },
795
+ {
796
+ "scope": "Node",
797
+ "prefixlen": "128",
798
+ "family": "inet6",
799
+ "address": "::1"
800
+ },
801
+ {
802
+ "scope": "Node",
803
+ "prefixlen": "128",
804
+ "family": "inet6",
805
+ "address": "private"
806
+ }
807
+ ],
808
+ "number": "0",
809
+ "mtu": "16384",
810
+ "type": "lo",
811
+ "encapsulation": "Loopback"
812
+ },
813
+ "vboxn": {
814
+ "counters": {
815
+ "tx": {
816
+ "bytes": "0",
817
+ "packets": "0",
818
+ "collisions": "0",
819
+ "compressed": 0,
820
+ "carrier": 0,
821
+ "drop": 0,
822
+ "errors": "0",
823
+ "overrun": 0
824
+ },
825
+ "rx": {
826
+ "bytes": "0",
827
+ "packets": "0",
828
+ "compressed": 0,
829
+ "drop": 0,
830
+ "errors": "0",
831
+ "overrun": 0,
832
+ "frame": 0,
833
+ "multicast": 0
834
+ }
835
+ }
836
+ },
837
+ "gif0": {
838
+ "flags": [
839
+ "POINTOPOINT",
840
+ "MULTICAST"
841
+ ],
842
+ "number": "0",
843
+ "mtu": "1280",
844
+ "type": "gif",
845
+ "encapsulation": "IPIP"
846
+ },
847
+ "vmnet": {
848
+ "counters": {
849
+ "tx": {
850
+ "bytes": "0",
851
+ "packets": "0",
852
+ "collisions": "0",
853
+ "compressed": 0,
854
+ "carrier": 0,
855
+ "drop": 0,
856
+ "errors": "0",
857
+ "overrun": 0
858
+ },
859
+ "rx": {
860
+ "bytes": "0",
861
+ "packets": "0",
862
+ "compressed": 0,
863
+ "drop": 0,
864
+ "errors": "0",
865
+ "overrun": 0,
866
+ "frame": 0,
867
+ "multicast": 0
868
+ }
869
+ }
870
+ },
871
+ "vmnet8": {
872
+ "flags": [
873
+ "UP",
874
+ "BROADCAST",
875
+ "SMART",
876
+ "RUNNING",
877
+ "SIMPLEX",
878
+ "MULTICAST"
879
+ ],
880
+ "addresses": [
881
+ {
882
+ "broadcast": "192.168.237.255",
883
+ "netmask": "255.255.255.0",
884
+ "family": "inet",
885
+ "address": "192.168.237.1"
886
+ },
887
+ {
888
+ "family": "lladdr",
889
+ "address": "private"
890
+ }
891
+ ],
892
+ "number": "8",
893
+ "mtu": "1500",
894
+ "type": "vmnet",
895
+ "encapsulation": "Ethernet"
896
+ },
897
+ "en0": {
898
+ "status": "inactive",
899
+ "flags": [
900
+ "UP",
901
+ "BROADCAST",
902
+ "SMART",
903
+ "RUNNING",
904
+ "SIMPLEX",
905
+ "MULTICAST"
906
+ ],
907
+ "addresses": [
908
+ {
909
+ "family": "lladdr",
910
+ "address": "private"
911
+ }
912
+ ],
913
+ "number": "0",
914
+ "mtu": "1500",
915
+ "media": {
916
+ "supported": [
917
+ {
918
+ "autoselect": {
919
+ "options": [
920
+
921
+ ]
922
+ }
923
+ },
924
+ {
925
+ "10baseT\/UTP": {
926
+ "options": [
927
+ "half-duplex"
928
+ ]
929
+ }
930
+ },
931
+ {
932
+ "10baseT\/UTP": {
933
+ "options": [
934
+ "full-duplex"
935
+ ]
936
+ }
937
+ },
938
+ {
939
+ "10baseT\/UTP": {
940
+ "options": [
941
+ "full-duplex",
942
+ "hw-loopback"
943
+ ]
944
+ }
945
+ },
946
+ {
947
+ "10baseT\/UTP": {
948
+ "options": [
949
+ "full-duplex",
950
+ "flow-control"
951
+ ]
952
+ }
953
+ },
954
+ {
955
+ "100baseTX": {
956
+ "options": [
957
+ "half-duplex"
958
+ ]
959
+ }
960
+ },
961
+ {
962
+ "100baseTX": {
963
+ "options": [
964
+ "full-duplex"
965
+ ]
966
+ }
967
+ },
968
+ {
969
+ "100baseTX": {
970
+ "options": [
971
+ "full-duplex",
972
+ "hw-loopback"
973
+ ]
974
+ }
975
+ },
976
+ {
977
+ "100baseTX": {
978
+ "options": [
979
+ "full-duplex",
980
+ "flow-control"
981
+ ]
982
+ }
983
+ },
984
+ {
985
+ "1000baseT": {
986
+ "options": [
987
+ "full-duplex"
988
+ ]
989
+ }
990
+ },
991
+ {
992
+ "1000baseT": {
993
+ "options": [
994
+ "full-duplex",
995
+ "hw-loopback"
996
+ ]
997
+ }
998
+ },
999
+ {
1000
+ "1000baseT": {
1001
+ "options": [
1002
+ "full-duplex",
1003
+ "flow-control"
1004
+ ]
1005
+ }
1006
+ },
1007
+ {
1008
+ "none": {
1009
+ "options": [
1010
+
1011
+ ]
1012
+ }
1013
+ }
1014
+ ],
1015
+ "selected": [
1016
+ {
1017
+ "autoselect": {
1018
+ "options": [
1019
+
1020
+ ]
1021
+ }
1022
+ }
1023
+ ]
1024
+ },
1025
+ "type": "en",
1026
+ "counters": {
1027
+ "tx": {
1028
+ "bytes": "342",
1029
+ "packets": "0",
1030
+ "collisions": "0",
1031
+ "compressed": 0,
1032
+ "carrier": 0,
1033
+ "drop": 0,
1034
+ "errors": "0",
1035
+ "overrun": 0
1036
+ },
1037
+ "rx": {
1038
+ "bytes": "0",
1039
+ "packets": "0",
1040
+ "compressed": 0,
1041
+ "drop": 0,
1042
+ "errors": "0",
1043
+ "overrun": 0,
1044
+ "frame": 0,
1045
+ "multicast": 0
1046
+ }
1047
+ },
1048
+ "encapsulation": "Ethernet"
1049
+ },
1050
+ "en1": {
1051
+ "status": "active",
1052
+ "flags": [
1053
+ "UP",
1054
+ "BROADCAST",
1055
+ "SMART",
1056
+ "RUNNING",
1057
+ "SIMPLEX",
1058
+ "MULTICAST"
1059
+ ],
1060
+ "addresses": [
1061
+ {
1062
+ "scope": "Link",
1063
+ "prefixlen": "64",
1064
+ "family": "inet6",
1065
+ "address": "private"
1066
+ },
1067
+ {
1068
+ "broadcast": "192.168.1.255",
1069
+ "netmask": "255.255.255.0",
1070
+ "family": "inet",
1071
+ "address": "192.168.1.4"
1072
+ },
1073
+ {
1074
+ "family": "lladdr",
1075
+ "address": "private"
1076
+ }
1077
+ ],
1078
+ "number": "1",
1079
+ "mtu": "1500",
1080
+ "media": {
1081
+ "supported": [
1082
+ {
1083
+ "autoselect": {
1084
+ "options": [
1085
+
1086
+ ]
1087
+ }
1088
+ }
1089
+ ],
1090
+ "selected": [
1091
+ {
1092
+ "autoselect": {
1093
+ "options": [
1094
+
1095
+ ]
1096
+ }
1097
+ }
1098
+ ]
1099
+ },
1100
+ "type": "en",
1101
+ "counters": {
1102
+ "tx": {
1103
+ "bytes": "449206298",
1104
+ "packets": "7041789",
1105
+ "collisions": "0",
1106
+ "compressed": 0,
1107
+ "carrier": 0,
1108
+ "drop": 0,
1109
+ "errors": "95",
1110
+ "overrun": 0
1111
+ },
1112
+ "rx": {
1113
+ "bytes": "13673879120",
1114
+ "packets": "19966002",
1115
+ "compressed": 0,
1116
+ "drop": 0,
1117
+ "errors": "1655893",
1118
+ "overrun": 0,
1119
+ "frame": 0,
1120
+ "multicast": 0
1121
+ }
1122
+ },
1123
+ "arp": {
1124
+ "192.168.1.7": "private"
1125
+ },
1126
+ "encapsulation": "Ethernet"
1127
+ },
1128
+ "fw0": {
1129
+ "status": "inactive",
1130
+ "flags": [
1131
+ "UP",
1132
+ "BROADCAST",
1133
+ "SMART",
1134
+ "RUNNING",
1135
+ "SIMPLEX",
1136
+ "MULTICAST"
1137
+ ],
1138
+ "addresses": [
1139
+ {
1140
+ "family": "lladdr",
1141
+ "address": "private"
1142
+ }
1143
+ ],
1144
+ "number": "0",
1145
+ "mtu": "4078",
1146
+ "media": {
1147
+ "supported": [
1148
+ {
1149
+ "autoselect": {
1150
+ "options": [
1151
+ "full-duplex"
1152
+ ]
1153
+ }
1154
+ }
1155
+ ],
1156
+ "selected": [
1157
+ {
1158
+ "autoselect": {
1159
+ "options": [
1160
+ "full-duplex"
1161
+ ]
1162
+ }
1163
+ }
1164
+ ]
1165
+ },
1166
+ "type": "fw",
1167
+ "counters": {
1168
+ "tx": {
1169
+ "bytes": "346",
1170
+ "packets": "0",
1171
+ "collisions": "0",
1172
+ "compressed": 0,
1173
+ "carrier": 0,
1174
+ "drop": 0,
1175
+ "errors": "0",
1176
+ "overrun": 0
1177
+ },
1178
+ "rx": {
1179
+ "bytes": "0",
1180
+ "packets": "0",
1181
+ "compressed": 0,
1182
+ "drop": 0,
1183
+ "errors": "0",
1184
+ "overrun": 0,
1185
+ "frame": 0,
1186
+ "multicast": 0
1187
+ }
1188
+ },
1189
+ "encapsulation": "1394"
1190
+ }
1191
+ }
1192
+ },
1193
+ "fqdn": "local.local",
1194
+ "ohai_time": 1240624355.08575,
1195
+ "domain": "local",
1196
+ "os": "darwin",
1197
+ "platform_build": "9G55",
1198
+ "os_version": "9.6.0",
1199
+ "hostname": "local",
1200
+ "macaddress": "private",
1201
+ "languages": {
1202
+ "ruby": {
1203
+ "target_os": "darwin9.0",
1204
+ "platform": "universal-darwin9.0",
1205
+ "host_vendor": "apple",
1206
+ "target_vendor": "apple",
1207
+ "target_cpu": "i686",
1208
+ "host_os": "darwin9.0",
1209
+ "host_cpu": "i686",
1210
+ "version": "1.8.6",
1211
+ "host": "i686-apple-darwin9.0",
1212
+ "target": "i686-apple-darwin9.0",
1213
+ "release_date": "2008-03-03"
1214
+ }
1215
+ }
1216
+ }