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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
[
{
"namespace": "experimental.dns",
"nodoc": true,
"functions": [
{
"name": "resolve",
"type": "function",
"description": "Resolves the given hostname or IP address literal.",
"parameters": [
{
"name": "hostname",
"type": "string",
"description": "The hostname to resolve."
},
{
"name": "callback",
"type": "function",
"description": "Called when the resolution operation completes.",
"parameters": [
{
"type": "object",
"name": "resolveInfo",
"properties": {
"resultCode": {
"type": "integer",
"description": "The result code. Zero indicates success."
},
"address": {
"type": "string",
"description": "A string representing the IP address literal. Supplied only if resultCode indicates success. Note that we presently return only IPv4 addresses.",
"optional": true
}
}
}
]
}
]
}
]
}
]
|