dns: add missing exports.BADNAME
authorRoman Reiss <me@silverwind.io>
Sat, 26 Sep 2015 13:14:15 +0000 (15:14 +0200)
committerRod Vagg <rod@vagg.org>
Wed, 30 Sep 2015 06:02:14 +0000 (16:02 +1000)
Adds the documented but missing DNS error exports.BADNAME. This export
has been there before but got lost in a 2012 commit that added more
error codes. https://github.com/nodejs/node/pull/3076 will remove the
wrong error code exports.ADNAME.

PR-URL: https://github.com/nodejs/node/pull/3051
Fixes: https://github.com/nodejs/node/issues/3050
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
lib/dns.js

index 97f730c..e1a2c03 100644 (file)
@@ -331,6 +331,7 @@ exports.NOTIMP = 'ENOTIMP';
 exports.REFUSED = 'EREFUSED';
 exports.BADQUERY = 'EBADQUERY';
 exports.ADNAME = 'EADNAME';
+exports.BADNAME = 'EBADNAME';
 exports.BADFAMILY = 'EBADFAMILY';
 exports.BADRESP = 'EBADRESP';
 exports.CONNREFUSED = 'ECONNREFUSED';