X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2Fmoof%2Fservice.cc;fp=src%2Fmoof%2Fservice.cc;h=c96f81fa2e258ea7dbf552ea4e605965b51360ec;hp=869b541344f4e9e79b6b36a3a8b1499a6a06af31;hb=574af38ed616d1adfa5e6ce35f67cda1f707f89d;hpb=6c9943707d4f33035830eba0587a61a34eaecbc2 diff --git a/src/moof/service.cc b/src/moof/service.cc index 869b541..c96f81f 100644 --- a/src/moof/service.cc +++ b/src/moof/service.cc @@ -1,28 +1,24 @@ -/*] Copyright (c) 2009-2010, Charles McGarvey [************************** +/*] Copyright (c) 2009-2011, Charles McGarvey [***************************** **] All rights reserved. * -* vi:ts=4 sw=4 tw=75 -* * Distributable under the terms and conditions of the 2-clause BSD license; * see the file COPYING for a complete text of the license. * -**************************************************************************/ +*****************************************************************************/ #include "service.hh" #include "socket.hh" - -#define SOLICIT 0x1234ABCD -#define RESPONSE 0xABCD1234 +#define SOLICIT 0x1234ABCD +#define RESPONSE 0xABCD1234 namespace moof { int service::handle_packet(socket_multiplexer& mux, - packet& packet, - const socket::address& address) + packet& packet, const socket::address& address) { try { @@ -41,13 +37,14 @@ int service::handle_packet(socket_multiplexer& mux, } } } - catch (...) {} + catch (...) + { + } return -1; } int service_finder::handle_packet(socket_multiplexer& mux, - packet& packet, - const socket::address& address) + packet& packet, const socket::address& address) { try { @@ -68,7 +65,9 @@ int service_finder::handle_packet(socket_multiplexer& mux, } } } - catch (...) {} + catch (...) + { + } return -1; }