File indexing completed on 2024-05-19 04:42:03

0001 /*
0002     SPDX-FileCopyrightText: 2014 Denis Steckelmacher <steckdenis@yahoo.fr>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 exports.lookup = function (domain, family, callback) { return ; };
0008 exports.lookup("", 1, function(){});
0009 
0010 exports.resolve = function (domain, rrtype, callback) { return ; };
0011 exports.resolve("", "", function(){});
0012 
0013 exports.resolve4 = function (domain, callback) { return ; };
0014 exports.resolve4("", function(){});
0015 
0016 exports.resolve6 = function (domain, callback) { return ; };
0017 exports.resolve6("", function(){});
0018 
0019 exports.resolveMx = function (domain, callback) { return ; };
0020 exports.resolveMx("", function(){});
0021 
0022 exports.resolveTxt = function (domain, callback) { return ; };
0023 exports.resolveTxt("", function(){});
0024 
0025 exports.resolveSrv = function (domain, callback) { return ; };
0026 exports.resolveSrv("", function(){});
0027 
0028 exports.resolveNs = function (domain, callback) { return ; };
0029 exports.resolveNs("", function(){});
0030 
0031 exports.resolveCname = function (domain, callback) { return ; };
0032 exports.resolveCname("", function(){});
0033 
0034 exports.reverse = function (ip, callback) { return ; };
0035 exports.reverse("", function(){});
0036 
0037 exports.NODATA = 1;
0038 
0039 exports.FORMERR = 1;
0040 
0041 exports.SERVFAIL = 1;
0042 
0043 exports.NOTFOUND = 1;
0044 
0045 exports.NOTIMP = 1;
0046 
0047 exports.REFUSED = 1;
0048 
0049 exports.BADQUERY = 1;
0050 
0051 exports.BADNAME = 1;
0052 
0053 exports.BADFAMILY = 1;
0054 
0055 exports.BADRESP = 1;
0056 
0057 exports.CONNREFUSED = 1;
0058 
0059 exports.TIMEOUT = 1;
0060 
0061 exports.EOF = 1;
0062 
0063 exports.FILE = 1;
0064 
0065 exports.NOMEM = 1;
0066 
0067 exports.DESTRUCTION = 1;
0068 
0069 exports.BADSTR = 1;
0070 
0071 exports.BADFLAGS = 1;
0072 
0073 exports.NONAME = 1;
0074 
0075 exports.BADHINTS = 1;
0076 
0077 exports.NOTINITIALIZED = 1;
0078 
0079 exports.LOADIPHLPAPI = 1;
0080 
0081 exports.ADDRGETNETWORKPARAMS = 1;
0082 
0083 exports.CANCELLED = 1;
0084