Changeset 1275
- Timestamp:
- 11/15/08 21:38:58 (16 months ago)
- Location:
- trunk/pdns/pdns
- Files:
-
- 14 modified
-
dnsdemog.cc (modified) (2 diffs)
-
dnsgram.cc (modified) (2 diffs)
-
dnspbench.cc (modified) (1 diff)
-
dnsproxy.cc (modified) (1 diff)
-
dnsreplay.cc (modified) (2 diffs)
-
dnsscan.cc (modified) (1 diff)
-
dnswasher.cc (modified) (1 diff)
-
notify.cc (modified) (1 diff)
-
nproxy.cc (modified) (3 diffs)
-
rcpgenerator.cc (modified) (1 diff)
-
receiver.cc (modified) (1 diff)
-
tcpreceiver.cc (modified) (1 diff)
-
webserver.cc (modified) (2 diffs)
-
win32_pdns_recursor.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/dnsdemog.cc
r960 r1275 72 72 continue; 73 73 } 74 catch( exception& e) {74 catch(std::exception& e) { 75 75 cerr << e.what() << endl; 76 76 continue; … … 88 88 89 89 } 90 catch( exception& e)90 catch(std::exception& e) 91 91 { 92 92 cerr<<"Fatal: "<<e.what()<<endl; -
trunk/pdns/pdns/dnsgram.cc
r1125 r1275 155 155 continue; 156 156 } 157 catch( exception& e) {157 catch(std::exception& e) { 158 158 cerr << e.what() << endl; 159 159 continue; … … 188 188 } 189 189 } 190 catch( exception& e)190 catch(std::exception& e) 191 191 { 192 192 cerr<<"Fatal: "<<e.what()<<endl; -
trunk/pdns/pdns/dnspbench.cc
r832 r1275 90 90 #endif 91 91 } 92 catch( exception& e)92 catch(std::exception& e) 93 93 { 94 94 cerr<<"Fatal: "<<e.what()<<"\n"; -
trunk/pdns/pdns/dnsproxy.cc
r1215 r1275 204 204 L<<Logger::Error<<"Fatal error in DNS proxy: "<<ae.reason<<endl; 205 205 } 206 catch( exception &e) {206 catch(std::exception &e) { 207 207 L<<Logger::Error<<"Communicator thread died because of STL error: "<<e.what()<<endl; 208 208 } -
trunk/pdns/pdns/dnsreplay.cc
r1268 r1275 380 380 381 381 } 382 catch( exception& e)382 catch(std::exception& e) 383 383 { 384 384 cerr<<"Receiver thread died: "<<e.what()<<endl; … … 665 665 printStats(); 666 666 } 667 catch( exception& e)667 catch(std::exception& e) 668 668 { 669 669 cerr<<"Fatal: "<<e.what()<<endl; -
trunk/pdns/pdns/dnsscan.cc
r857 r1275 79 79 80 80 } 81 catch( exception& e)81 catch(std::exception& e) 82 82 { 83 83 cout<<"Fatal: "<<e.what()<<endl; -
trunk/pdns/pdns/dnswasher.cc
r1037 r1275 75 75 pr.d_nonetheripudp<<" unknown encaps"<<endl; 76 76 } 77 catch( exception& e)77 catch(std::exception& e) 78 78 { 79 79 cerr<<"Fatal: "<<e.what()<<endl; -
trunk/pdns/pdns/notify.cc
r1087 r1275 53 53 cerr<<"For: '"<<mdp.d_qname<<"'"<<endl; 54 54 } 55 catch( exception& e)55 catch(std::exception& e) 56 56 { 57 57 cerr<<"Fatal: "<<e.what()<<endl; -
trunk/pdns/pdns/nproxy.cc
r1112 r1275 111 111 112 112 } 113 catch( exception &e)113 catch(std::exception &e) 114 114 { 115 115 syslogFmt(boost::format("Error parsing packet from external nameserver: %s") % e.what()); … … 160 160 161 161 } 162 catch( exception &e)162 catch(std::exception &e) 163 163 { 164 164 syslogFmt(boost::format("Error parsing packet from internal nameserver: %s") % e.what()); … … 294 294 syslogFmt(boost::format("Error parsing command line options: %s") % e.what()); 295 295 } 296 catch( exception& e)296 catch(std::exception& e) 297 297 { 298 298 syslogFmt(boost::format("Fatal: %s") % e.what()); -
trunk/pdns/pdns/rcpgenerator.cc
r1167 r1275 461 461 462 462 } 463 catch( exception& e)463 catch(std::exception& e) 464 464 { 465 465 cerr<<"Fatal: "<<e.what()<<endl; -
trunk/pdns/pdns/receiver.cc
r1256 r1275 580 580 L<<Logger::Error<<"Exiting because: "<<AE.reason<<endl; 581 581 } 582 catch( exception &e) {582 catch(std::exception &e) { 583 583 if(!::arg().mustDo("daemon")) 584 584 cerr<<"Exiting because of STL error: "<<e.what()<<endl; -
trunk/pdns/pdns/tcpreceiver.cc
r1241 r1275 325 325 L<<Logger::Error<<"TCP nameserver had error, cycling backend: "<<ae.reason<<endl; 326 326 } 327 catch( exception &e) {327 catch(std::exception &e) { 328 328 L<<Logger::Error<<"TCP Connection Thread died because of STL error: "<<e.what()<<endl; 329 329 } -
trunk/pdns/pdns/webserver.cc
r1092 r1275 172 172 L<<Logger::Error<<"Exception in webserver: "<<e.reason<<endl; 173 173 } 174 catch( exception &e) {174 catch(std::exception &e) { 175 175 L<<Logger::Error<<"STL Exception in webserver: "<<e.what()<<endl; 176 176 } … … 216 216 L<<Logger::Error<<"Fatal error in main webserver thread: "<<e.reason<<endl; 217 217 } 218 catch( exception &e) {218 catch(std::exception &e) { 219 219 L<<Logger::Error<<"STL Exception in main webserver thread: "<<e.what()<<endl; 220 220 } -
trunk/pdns/pdns/win32_pdns_recursor.cc
r681 r1275 597 597 L<<Logger::Error<<"Exception: "<<ae.reason<<endl; 598 598 } 599 catch( exception &e) {599 catch(std::exception &e) { 600 600 L<<Logger::Error<<"STL Exception: "<<e.what()<<endl; 601 601 } … … 718 718 L<<Logger::Error<<"Exception: "<<ae.reason<<endl; 719 719 } 720 catch( exception &e) {720 catch(std::exception &e) { 721 721 L<<Logger::Error<<"STL Exception: "<<e.what()<<endl; 722 722 }