Browse Source

Merged changes from trac109 (the few that hadn't been rendered moot
by the removal of the non-ASIO query processing code).


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1985 e5f2f494-b856-4b98-b285-d166d9295462

Evan Hunt 15 years ago
parent
commit
f9ef39e6e6
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/bin/auth/main.cc

+ 2 - 1
src/bin/auth/main.cc

@@ -127,7 +127,7 @@ main(int argc, char* argv[]) {
     }
 
     if (!use_ipv4 && !use_ipv6) {
-        cerr << "-4 and -6 can't coexist" << endl;
+        cerr << "[b10-auth] Error: -4 and -6 can't coexist" << endl;
         usage();
     }
 
@@ -152,6 +152,7 @@ main(int argc, char* argv[]) {
 
         io_service = new asio_link::IOService(auth_server, port, use_ipv4,
                                               use_ipv6);
+        cout << "[b10-auth] Server started." << endl;
         io_service->run();
     } catch (const std::exception& ex) {
         cerr << ex.what() << endl;