+/*
+ * The structure that lockd hands the kernel for each notify.
+ */
+#define LOCKD_NOTIFY_VERSION 1
+struct lockd_notify {
+ int ln_version; /* lockd_notify version */
+ int ln_flags; /* notify flags */
+ int ln_pad; /* (for alignment) */
+ int ln_addrcount; /* # of addresss */
+ struct sockaddr_storage ln_addr[1]; /* List of addresses. */
+};
+
+