Commit 9c1e2943 authored by Michael Tremer's avatar Michael Tremer

address: Rename in6_addr_cmp into loc_address_cmp

Signed-off-by: default avatarMichael Tremer <michael.tremer@ipfire.org>
parent 0b1fef38
......@@ -1466,7 +1466,7 @@ static int __loc_database_enumerator_next_bogon(
gap_end = address_decrement(loc_network_get_first_address(network));
// There is a gap
if (in6_addr_cmp(gap_start, &gap_end) < 0) {
if (loc_address_cmp(gap_start, &gap_end) < 0) {
r = loc_network_list_summarize(enumerator->ctx,
gap_start, &gap_end, &enumerator->stack);
if (r) {
......@@ -1496,7 +1496,7 @@ FINISH:
if (r)
return r;
if (in6_addr_cmp(&enumerator->gap6_start, &gap_end) < 0) {
if (loc_address_cmp(&enumerator->gap6_start, &gap_end) < 0) {
r = loc_network_list_summarize(enumerator->ctx,
&enumerator->gap6_start, &gap_end, &enumerator->stack);
if (r)
......@@ -1512,7 +1512,7 @@ FINISH:
if (r)
return r;
if (in6_addr_cmp(&enumerator->gap4_start, &gap_end) < 0) {
if (loc_address_cmp(&enumerator->gap4_start, &gap_end) < 0) {
r = loc_network_list_summarize(enumerator->ctx,
&enumerator->gap4_start, &gap_end, &enumerator->stack);
if (r)
......
......@@ -33,7 +33,7 @@ static inline int loc_address_family(const struct in6_addr* address) {
return AF_INET6;
}
static inline int in6_addr_cmp(const struct in6_addr* a1, const struct in6_addr* a2) {
static inline int loc_address_cmp(const struct in6_addr* a1, const struct in6_addr* a2) {
for (unsigned int i = 0; i < 16; i++) {
if (a1->s6_addr[i] > a2->s6_addr[i])
return 1;
......@@ -278,7 +278,7 @@ static inline int loc_address_all_zeroes(const struct in6_addr* address) {
if (r)
return r;
if (in6_addr_cmp(address, &all_zeroes) == 0)
if (loc_address_cmp(address, &all_zeroes) == 0)
return 1;
return 0;
......
......@@ -319,7 +319,7 @@ int loc_network_list_summarize(struct loc_ctx* ctx,
}
// Check if the last address is larger than the first address
if (in6_addr_cmp(first, last) >= 0) {
if (loc_address_cmp(first, last) >= 0) {
ERROR(ctx, "The first address must be smaller than the last address\n");
errno = EINVAL;
return 1;
......@@ -330,7 +330,7 @@ int loc_network_list_summarize(struct loc_ctx* ctx,
const int family_bit_length = loc_address_family_bit_length(family1);
while (in6_addr_cmp(&start, last) <= 0) {
while (loc_address_cmp(&start, last) <= 0) {
struct in6_addr num;
int bits1;
......
......@@ -295,11 +295,11 @@ LOC_EXPORT char* loc_network_format_last_address(struct loc_network* network) {
LOC_EXPORT int loc_network_matches_address(struct loc_network* network, const struct in6_addr* address) {
// Address must be larger than the start address
if (in6_addr_cmp(&network->first_address, address) > 0)
if (loc_address_cmp(&network->first_address, address) > 0)
return 0;
// Address must be smaller than the last address
if (in6_addr_cmp(&network->last_address, address) < 0)
if (loc_address_cmp(&network->last_address, address) < 0)
return 0;
// The address is inside this network
......@@ -365,7 +365,7 @@ LOC_EXPORT int loc_network_set_flag(struct loc_network* network, uint32_t flag)
LOC_EXPORT int loc_network_cmp(struct loc_network* self, struct loc_network* other) {
// Compare address
int r = in6_addr_cmp(&self->first_address, &other->first_address);
int r = loc_address_cmp(&self->first_address, &other->first_address);
if (r)
return r;
......@@ -404,12 +404,12 @@ LOC_EXPORT int loc_network_is_subnet(struct loc_network* self, struct loc_networ
// If the start address of the other network is smaller than this network,
// it cannot be a subnet.
if (in6_addr_cmp(&self->first_address, &other->first_address) > 0)
if (loc_address_cmp(&self->first_address, &other->first_address) > 0)
return 0;
// If the end address of the other network is greater than this network,
// it cannot be a subnet.
if (in6_addr_cmp(&self->last_address, &other->last_address) < 0)
if (loc_address_cmp(&self->last_address, &other->last_address) < 0)
return 0;
return 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment