summaryrefslogtreecommitdiffstats
path: root/src/fuse/helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fuse/helper.h')
-rw-r--r--src/fuse/helper.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/fuse/helper.h b/src/fuse/helper.h
index 0b98ded..c0c70c7 100644
--- a/src/fuse/helper.h
+++ b/src/fuse/helper.h
@@ -27,4 +27,9 @@ static inline bool isSameAddressPort(const dnbd3_host_t * const a, const dnbd3_h
return (a->type == b->type) && (a->port == b->port) && (0 == memcmp( a->addr, b->addr, (a->type == AF_INET ? 4 : 16) ));
}
+static inline bool isSameAddress(const dnbd3_host_t * const a, const dnbd3_host_t * const b)
+{
+ return (a->type == b->type) && (0 == memcmp( a->addr, b->addr, (a->type == AF_INET ? 4 : 16) ));
+}
+
#endif