File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -264,6 +264,12 @@ const handlers = {
264264 cache . secure = true ;
265265 } ,
266266
267+ RPL_WHOISCERTFP : function ( command , handler ) {
268+ const cache_key = command . params [ 1 ] . toLowerCase ( ) ;
269+ const cache = handler . cache ( 'whois.' + cache_key ) ;
270+ cache . certfp = command . params [ command . params . length - 1 ] ;
271+ } ,
272+
267273 RPL_WHOISACCOUNT : function ( command , handler ) {
268274 const cache_key = command . params [ 1 ] . toLowerCase ( ) ;
269275 const cache = handler . cache ( 'whois.' + cache_key ) ;
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ module.exports = {
6464 '259' : 'RPL_ADMINEMAIL' ,
6565 '265' : 'RPL_LOCALUSERS' ,
6666 '266' : 'RPL_GLOBALUSERS' ,
67+ '276' : 'RPL_WHOISCERTFP' ,
6768 '290' : 'RPL_HELPHDR' ,
6869 '291' : 'RPL_HELPOP' ,
6970 '292' : 'RPL_HELPTLR' ,
You can’t perform that action at this time.
0 commit comments