602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
|
bool
of_socket_address_equal(const of_socket_address_t *address1,
const of_socket_address_t *address2)
{
return glue_of_socket_address_equal(address1, address2);
}
uint32_t
of_socket_address_hash(const of_socket_address_t *address)
{
return glue_of_socket_address_hash(address);
}
OFString *
of_socket_address_ip_string(const of_socket_address_t *address, uint16_t *port)
|
|
|
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
|
bool
of_socket_address_equal(const of_socket_address_t *address1,
const of_socket_address_t *address2)
{
return glue_of_socket_address_equal(address1, address2);
}
unsigned long
of_socket_address_hash(const of_socket_address_t *address)
{
return glue_of_socket_address_hash(address);
}
OFString *
of_socket_address_ip_string(const of_socket_address_t *address, uint16_t *port)
|