diff options
author | bobroberts177 <bobroberts177@gmail.com> | 2013-11-05 10:32:02 -0800 |
---|---|---|
committer | bobroberts177 <bobroberts177@gmail.com> | 2013-11-05 10:32:02 -0800 |
commit | a142589e1d8961b7b4017121f8e6f99eb96b4528 (patch) | |
tree | 754a6f1814f647f714015b57d27082412ab8fc6c | |
parent | 90dcac551fee69cf284ae4431db949bc69796a1c (diff) |
Fix dependencies on DNS
-rw-r--r-- | src/library.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js index e3cdc7c3..7b25f750 100644 --- a/src/library.js +++ b/src/library.js @@ -7312,6 +7312,7 @@ LibraryManager.library = { // we're generating fake IP addresses with lookup_name that we can // resolve later on with lookup_addr. // We do the aliasing in 172.29.*.*, giving us 65536 possibilities. + $DNS__deps: ['_inet_pton4_raw', '_inet_pton6_raw'], $DNS: { address_map: { id: 1, @@ -7319,7 +7320,6 @@ LibraryManager.library = { names: {} }, - lookup_name__deps: ['_inet_pton4_raw', '_inet_pton6_raw'], lookup_name: function (name) { // If the name is already a valid ipv4 / ipv6 address, don't generate a fake one. var res = __inet_pton4_raw(name); |