1<!-- Host resolver info -->
2<div id=dns-view-tab-content class=content-box>
3  <ul style='margin-top: 0'>
4    <li><a href='#events&q=type:HOST_RESOLVER_IMPL_REQUEST,HOST_RESOLVER_IMPL_JOB%20is:active'>View pending lookups</a></li>
5    <li>Default address family: <span id=dns-view-default-family></span>
6      <span id=dns-view-ipv6-disabled class=warning-text style="display: none;">
7        (IPv6 disabled)
8        <input type=button value="Enable IPv6" id=dns-view-enable-ipv6 class="hide-when-not-capturing">
9      </span>
10    </li>
11  </ul>
12
13  <div>
14    <h4>Async DNS Configuration</h4>
15    <ul>
16      <li>Internal DNS client enabled:
17        <span id=dns-view-internal-dns-enabled></span>
18        <span id=dns-view-internal-dns-invalid-config class=warning-text style="display: none;">
19          (No valid configuration found)</span>
20      </li>
21    </ul>
22    <table class="styled-table">
23      <tbody id=dns-view-internal-dns-config-tbody></tbody>
24    </table>
25  </div>
26
27  <h4>
28    Host resolver cache
29    <input type=button value="Clear host cache" id=dns-view-clear-cache class="hide-when-not-capturing">
30  </h4>
31  <ul>
32    <li>Capacity: <span id=dns-view-cache-capacity></span></li>
33  </ul>
34  <h4>Current State</h4>
35  <ul>
36    <li>Active entries: <span id=dns-view-cache-active></span></li>
37    <li>Expired entries: <span id=dns-view-cache-expired></span></li>
38  </ul>
39
40  <table class="styled-table">
41    <thead>
42      <tr>
43        <th>Hostname</th>
44        <th>Family</th>
45        <th>Addresses</th>
46        <th>Expires</th>
47      </tr>
48    </thead>
49    <tbody id=dns-view-cache-tbody>
50    </tbody>
51  </table>
52</div>
53