#include <Protocol.h>
Public Member Functions | |
unsigned long | operator() (Address const &a) const |
|
Definition at line 51 of file Protocol.h. References ACE_RMCast::Address, ACE_INET_Addr::get_ip_address(), and ACE_INET_Addr::get_port_number().
00052 { 00053 unsigned long port (a.get_port_number ()); 00054 unsigned long ip (a.get_ip_address ()); 00055 00056 port <<= sizeof (unsigned long) - sizeof (unsigned short); 00057 00058 return port ^ ip; 00059 } |