X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fcomm%2FINetAddress.hpp;h=ba272045d52dae68003cf1dcd13482aa4185a41a;hb=3fd99ed14e449e1e221d689db34c3b65b533a882;hp=6ca22f7ce15e67f9c2d02280cce924d3b6cac685;hpb=42c9ed133c166de9c99b4837f834aa5cf465e9a2;p=anna.git diff --git a/include/anna/comm/INetAddress.hpp b/include/anna/comm/INetAddress.hpp index 6ca22f7..ba27204 100644 --- a/include/anna/comm/INetAddress.hpp +++ b/include/anna/comm/INetAddress.hpp @@ -1,8 +1,8 @@ -// ANNA - Anna is Not 'N' Anymore +// ANNA - Anna is Not Nothingness Anymore // // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo // -// https://bitbucket.org/testillano/anna +// http://redmine.teslayout.com/projects/anna-suite // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions @@ -14,7 +14,7 @@ // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. -// * Neither the name of Google Inc. nor the names of its +// * Neither the name of the copyright holder nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // @@ -68,7 +68,7 @@ public: /** Constructor. - \param device Instance for device (address). + \param device Instance for device (address). \param port Port number. */ INetAddress(const Device* device, const int port = -1) : a_device(device), a_port(port) {;} @@ -106,25 +106,25 @@ public: /** Copy operator. - \param right Source address to be copied. + \param right Source address to be copied. */ INetAddress& operator = (const INetAddress& right) throw() { a_device = right.a_device; a_port = right.a_port; return *this; } /** - Comparison operator. + Comparison operator. \param right Source address to be compared. @return \em true when address provided is equal to this \em false in other case. */ bool operator == (const INetAddress& right) const throw() { return a_device == right.a_device && a_port == right.a_port; } /** - Returns the initialized state for this network address. - @return \em true when initialized, \em false when not. + Returns the initialized state for this network address. + @return \em true when initialized, \em false when not. */ bool isNull() const throw() { return (a_device == NULL || a_port == -1); } /** - Clear the content for this instance. + Clear the content for this instance. */ void clear() throw() { a_device = NULL; a_port = -1; }