[m] Lots of Doxygen fixes/additions - thanks to lfxGroove

This commit is contained in:
billy1arm 2013-06-23 21:43:27 +01:00 committed by Antz
parent b134615f92
commit c94dbc84c2
960 changed files with 5905 additions and 6171 deletions

View file

@ -24,22 +24,22 @@ private:
SOCKADDR_IN addr;
public:
/*
/**
In host byte order
*/
NetAddress(uint32 host, uint16 port = 0);
/*
/**
@param port Specified in host byte order (i.e., don't worry about endian issues)
*/
NetAddress(const std::string& hostname, uint16 port);
/*
/**
@param hostnameAndPort in the form "hostname:port" or "ip:port"
*/
NetAddress(const std::string& hostnameAndPort);
/*
/**
@deprecated Use G3D::NetworkDevice::broadcastAddressArray()
@brief Creates a UDP broadcast address for use with a
@ -90,7 +90,7 @@ template <> struct HashTrait<G3D::NetAddress> {
namespace G3D {
/*
/**
Two addresses may point to the same computer but be != because
they have different IP's.
*/