Source: portableaddress.h
|
|
|
|
// ##########################################################################
// #### ####
// #### RTP Audio Server Project ####
// #### ============================ ####
// #### ####
// #### Portable Address ####
// #### ####
// #### Version 1.00 -- September 17, 2000 ####
// #### ####
// #### Copyright (C) 1999 Thomas Dreibholz ####
// #### 2000 Universität Bonn, Abt. IV ####
// #### EMail: Dreibholz@bigfoot.com ####
// #### WWW: http://www.bigfoot.com/~dreibholz ####
// #### ####
// ##########################################################################
#ifndef PORTABLEADDRESS_H
#define PORTABLEADDRESS_H
#include "system.h"
namespace Coral {
/**
* Binary representation for a socket address for sending the address over
* a network. The difference between InternetAddress is that PortableAddress
* does not contain hidden information on virtual function management, which
* make network transfer of InternetAddress objects problematic.
*
* @short Portable Internet Address
* @author Thomas Dreibholz (Dreibholz@bigfoot.com)
* @version 1.0
*/
class PortableAddress
{
// ====== Comparision operators ==========================================
public:
/**
* Implementation of == operator.
*/
int operator==(const PortableAddress& address) const;
/**
* Implementation of == operator.
*/
int operator!=(const PortableAddress& address) const;
/**
* Implementation of < operator.
*/
int operator<(const PortableAddress& address) const;
/**
* Implementation of <= operator.
*/
int operator<=(const PortableAddress& address) const;
/**
* Implementation of > operator.
*/
int operator>(const PortableAddress& address) const;
/**
* Implementation of >= operator.
*/
int operator>=(const PortableAddress& address) const;
// ====== Reset ==========================================================
/**
* Reset portable address.
*/
inline void reset();
// ====== Address data ===================================================
public:
/**
* Host address in network byte order. IPv4 addresses are converted to
* IPv4-mapped IPv6 addresses.
*/
card16 Host[8];
/**
* Port number.
*/
card16 Port;
};
}
#include "portableaddress.icc"
#endif
Generated by: viper@odin on Mon Oct 16 11:49:26 2000, using kdoc 2.0a36. |