X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FGenericAddressingPolicy.cc;h=a59d1746f719309f12467e32aaba6605b42ac847;hb=70256cc93f59f5d2c9b3428775a181e5e225bfc5;hp=abb99f5759bcb12d25cb5dfae8409192b2cb5d60;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Socket/GenericAddressingPolicy.cc b/Socket/GenericAddressingPolicy.cc index abb99f5..a59d174 100644 --- a/Socket/GenericAddressingPolicy.cc +++ b/Socket/GenericAddressingPolicy.cc @@ -34,7 +34,7 @@ #define prefix_ ///////////////////////////////cc.p//////////////////////////////////////// -prefix_ void satcom::lib::GenericAddressingPolicy_Base::do_local(FileHandle handle, +prefix_ void senf::GenericAddressingPolicy_Base::do_local(FileHandle handle, struct sockaddr * addr, unsigned len) { @@ -42,7 +42,7 @@ prefix_ void satcom::lib::GenericAddressingPolicy_Base::do_local(FileHandle hand throw SystemException(errno); } -prefix_ void satcom::lib::GenericAddressingPolicy_Base::do_peer(FileHandle handle, +prefix_ void senf::GenericAddressingPolicy_Base::do_peer(FileHandle handle, struct sockaddr * addr, unsigned len) { @@ -50,7 +50,7 @@ prefix_ void satcom::lib::GenericAddressingPolicy_Base::do_peer(FileHandle handl throw SystemException(errno); } -prefix_ void satcom::lib::GenericAddressingPolicy_Base::do_bind(FileHandle handle, +prefix_ void senf::GenericAddressingPolicy_Base::do_bind(FileHandle handle, struct sockaddr const * addr, unsigned len) { @@ -58,7 +58,7 @@ prefix_ void satcom::lib::GenericAddressingPolicy_Base::do_bind(FileHandle handl throw SystemException(errno); } -prefix_ void satcom::lib::GenericAddressingPolicy_Base::do_connect(FileHandle handle, +prefix_ void senf::GenericAddressingPolicy_Base::do_connect(FileHandle handle, struct sockaddr const * addr, unsigned len) { @@ -92,5 +92,5 @@ prefix_ void satcom::lib::GenericAddressingPolicy_Base::do_connect(FileHandle ha // Local Variables: // mode: c++ -// c-file-style: "satcom" +// c-file-style: "senf" // End: