From patchwork Sat Dec 22 11:28:30 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/2] Add missing u64 function. Date: Sat, 22 Dec 2012 01:28:30 -0000 From: Eric Leblond X-Patchwork-Id: 207925 Message-Id: <1356175711-13254-2-git-send-email-eric@regit.org> To: netfilter-devel Cc: Eric Leblond Signed-off-by: Eric Leblond --- include/ulogd/ulogd.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/ulogd/ulogd.h b/include/ulogd/ulogd.h index 81933f2..41c2e9b 100644 --- a/include/ulogd/ulogd.h +++ b/include/ulogd/ulogd.h @@ -184,6 +184,11 @@ static inline u_int32_t ikey_get_u32(struct ulogd_key *key) return key->u.source->u.value.ui32; } +static inline u_int64_t ikey_get_u64(struct ulogd_key *key) +{ + return key->u.source->u.value.ui64; +} + static inline void *ikey_get_u128(struct ulogd_key *key) { return &key->u.source->u.value.ui128;