diff --git a/Socket/Protocols/BSDSocketAddress.cci b/Socket/Protocols/BSDSocketAddress.cci index 0c2499be727c094696e65483a1f2a6c6548419f3..4c4084f432121b93243f1fbffe4714d3fa4faca8 100644 --- a/Socket/Protocols/BSDSocketAddress.cci +++ b/Socket/Protocols/BSDSocketAddress.cci @@ -71,10 +71,12 @@ prefix_ bool senf::BSDSocketAddress::operator==(BSDSocketAddress const & other) return socklen()==other.socklen() && memcmp(sockaddr_p(), other.sockaddr_p(), socklen())==0; } -prefix_ bool senf::BSDSocketAddress::operator!=(BSDSocketAddress const & other) +prefix_ bool senf::BSDSocketAddress::operator<(BSDSocketAddress const & other) const { - return ! operator==(other); + if (socklen() < other.socklen()) return true; + else if (socklen() > other.socklen()) return false; + else return memcmp(sockaddr_p(), other.sockaddr_p(), socklen()) < 0; } prefix_ bool senf::BSDSocketAddress::boolean_test() diff --git a/Socket/Protocols/BSDSocketAddress.hh b/Socket/Protocols/BSDSocketAddress.hh index ec3edfdf090513e43a38ad27739eb55d120b2536..2040513e11bea285fe93c49acbfc0dfa0376c6ad 100644 --- a/Socket/Protocols/BSDSocketAddress.hh +++ b/Socket/Protocols/BSDSocketAddress.hh @@ -29,6 +29,7 @@ // Custom includes #include <boost/type_traits/alignment_of.hpp> #include <boost/type_traits/type_with_alignment.hpp> +#include <boost/operators.hpp> #include "../../Utils/safe_bool.hh" #include <sys/socket.h> #include <iostream> @@ -73,14 +74,19 @@ namespace senf { \ingroup addr_group */ class BSDSocketAddress - : public senf::comparable_safe_bool<BSDSocketAddress> + : public senf::comparable_safe_bool<BSDSocketAddress>, + public boost::less_than_comparable<BSDSocketAddress>, + public boost::equality_comparable<BSDSocketAddress> { public: bool operator==(BSDSocketAddress const & other) const; ///< Compare two arbitrary addresses /**< For addresses to be considered equal, they must have the same family, length and the data must be identical. */ - bool operator!=(BSDSocketAddress const & other) const; ///< Inverse of operator== + bool operator<(BSDSocketAddress const & other) const; ///< Compare two arbitrary addresses + /**< Ordering is based on the in-memory representation. It + is primarily useful to use addresses as keys in a map + or set. */ bool boolean_test() const; ///< Return \c true, if address is not empty /**< An address is considered empty if @@ -114,7 +120,6 @@ namespace senf { void socklen(socklen_t len); private: - // The following incantation is needed to fix the alignment of the sockaddr data members // which will be added by the derived classes later: The alignment must be forced // to coincide with the struct sockaddr_storage alignment (which must have the largest diff --git a/Socket/Protocols/INet/INet4Address.cc b/Socket/Protocols/INet/INet4Address.cc index e162200355540708bccfc488b16636088fa06fd5..0e5638245d5c7a9ceb3174a38141de3b973889f7 100644 --- a/Socket/Protocols/INet/INet4Address.cc +++ b/Socket/Protocols/INet/INet4Address.cc @@ -166,6 +166,20 @@ prefix_ std::istream & senf::operator>>(std::istream & is, INet4Address & addr) return is; } +prefix_ std::istream & senf::operator>>(std::istream & is, INet4Network & addr) +{ + std::string s; + if (!(is >> s)) + return is; + try { + addr = INet4Network(s); + } + catch (AddressException &) { + is.setstate(std::ios::failbit); + } + return is; +} + ///////////////////////////////cc.e//////////////////////////////////////// #undef prefix_ //#include "INet4Address.mpp" diff --git a/Socket/Protocols/INet/INet4Address.hh b/Socket/Protocols/INet/INet4Address.hh index fc21d0a6ba48c7a639ea19faec08d1e51e0a1de2..6651d686bbb9cefd49918d91a4fcec4045ddf859 100644 --- a/Socket/Protocols/INet/INet4Address.hh +++ b/Socket/Protocols/INet/INet4Address.hh @@ -172,7 +172,8 @@ namespace senf { \related INet4Address */ std::ostream & operator<<(std::ostream & os, INet4Address const & addr); - /** \brief Try to initialize INet4Address instance from a string representation + + /** \brief Initialize INet4Address instance from a string representation sets std::ios::failbit on the stream if an error occurred \see INet4Address from_string() \related INet4Address @@ -276,6 +277,13 @@ namespace senf { */ std::ostream & operator<<(std::ostream & os, INet4Network const & addr); + /** \brief Initialize INet4Address instance from a string representation + sets std::ios::failbit on the stream if an error occurred + \see INet4Address from_string() + \related INet4Network + */ + std::istream & operator>>(std::istream & is, INet4Network & addr); + } ///////////////////////////////hh.e//////////////////////////////////////// diff --git a/Socket/Protocols/INet/UDPSocketHandle.cc b/Socket/Protocols/INet/UDPSocketHandle.cc index 827738be8b7742f8308e3390feee6accdbc1872c..dabff8ba59a505b7c0c57805c687ed5f85bed876 100644 --- a/Socket/Protocols/INet/UDPSocketHandle.cc +++ b/Socket/Protocols/INet/UDPSocketHandle.cc @@ -55,6 +55,7 @@ senf::UDPv4SocketProtocol::init_client(INet4SocketAddress const & address) const { init_client(); + reuseaddr(true); clientHandle().bind(address); } diff --git a/Utils/Console/Console.hh b/Utils/Console/Console.hh index 6f98d86d2db47e9c971ef4be1e9bc6269021a056..6b1b6ae1d1b92174ed8cbd409a0dd3b4f393236b 100644 --- a/Utils/Console/Console.hh +++ b/Utils/Console/Console.hh @@ -41,6 +41,7 @@ #include "ProgramOptions.hh" #include "Sysdir.hh" #include "STLSupport.hh" +#include "UDPServer.hh" ///////////////////////////////hh.e//////////////////////////////////////// //#include "Console.cci" diff --git a/Utils/Console/UDPServer.cc b/Utils/Console/UDPServer.cc index f67030a437fad4db21f07583aeefdaa50c8a9837..312a03de1f581ae69b9f0f63f9499fbd0ee0cbb7 100644 --- a/Utils/Console/UDPServer.cc +++ b/Utils/Console/UDPServer.cc @@ -35,7 +35,8 @@ ///////////////////////////////cc.p//////////////////////////////////////// prefix_ senf::console::UDPServer::UDPServer(senf::INet4SocketAddress const & address) - : replies_ (true), target_ (), handle_ (senf::UDPv4ClientSocketHandle(address)), + : replies_ (true), emptyReplies_ (true), target_ (), + handle_ (senf::UDPv4ClientSocketHandle(address)), readevent_ ("senf::console::UDPServer::readevent", senf::membind(&UDPServer::handleInput, this), handle_, @@ -82,6 +83,12 @@ senf::console::UDPServer::replies(senf::INet6SocketAddress const & address) return *this; } +prefix_ senf::console::UDPServer & senf::console::UDPServer::emptyReplies(bool enable) +{ + emptyReplies_ = enable; + return *this; +} + prefix_ senf::console::DirectoryNode & senf::console::UDPServer::root() const { @@ -123,7 +130,7 @@ prefix_ void senf::console::UDPServer::handleInput(int events) msg = msg.substr(i+4); stream << msg << std::endl; } - if (replies_) { + if (replies_ && (emptyReplies_ || ! stream.str().empty())) { if (target_) address = target_; if (stream.str().empty()) diff --git a/Utils/Console/UDPServer.hh b/Utils/Console/UDPServer.hh index b5a91d087f3b4b9c5ff0b1b002edd9e333c72bf5..09832c1dc64f740960949b6371403f80489ca6f6 100644 --- a/Utils/Console/UDPServer.hh +++ b/Utils/Console/UDPServer.hh @@ -85,6 +85,8 @@ namespace console { UDPServer & replies(senf::INet6SocketAddress const & address); ///< Send replies to \a address + UDPServer & emptyReplies(bool enable); ///< Enable or disable empty reply packets + DirectoryNode & root() const; ///< Get root node UDPServer & root(DirectoryNode & root); ///< Set root node @@ -97,6 +99,7 @@ namespace console { void handleInput(int events); bool replies_; + bool emptyReplies_; senf::GenericBSDSocketAddress target_; Handle handle_;