File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
src/main/java/org/xbill/DNS/tools Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ public static void main(String[] args) throws Exception {
99 System .out .println (" dig" );
1010 System .out .println (" jnamed" );
1111 System .out .println (" lookup" );
12+ System .out .println (" primary" );
1213 System .out .println (" update" );
14+ System .out .println (" xfrin" );
1315 System .exit (1 );
1416 return ;
1517 }
@@ -27,9 +29,15 @@ public static void main(String[] args) throws Exception {
2729 case "lookup" :
2830 lookup .main (programArgs );
2931 break ;
32+ case "primary" :
33+ primary .main (programArgs );
34+ break ;
3035 case "update" :
3136 update .main (programArgs );
3237 break ;
38+ case "xfrin" :
39+ xfrin .main (programArgs );
40+ break ;
3341 }
3442 }
3543}
Original file line number Diff line number Diff line change 11// Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)
22
3- package org .xbill .DNS .apps ;
3+ package org .xbill .DNS .tools ;
44
55import java .util .Iterator ;
66import org .xbill .DNS .Name ;
Original file line number Diff line number Diff line change 11// Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)
22
3- package org .xbill .DNS .apps ;
3+ package org .xbill .DNS .tools ;
44
55import java .util .Iterator ;
66import java .util .List ;
You can’t perform that action at this time.
0 commit comments