summaryrefslogtreecommitdiffstats
path: root/src/libnetfilter_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libnetfilter_log.c')
-rw-r--r--src/libnetfilter_log.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libnetfilter_log.c b/src/libnetfilter_log.c
index 95537d8..a3bd435 100644
--- a/src/libnetfilter_log.c
+++ b/src/libnetfilter_log.c
@@ -442,6 +442,15 @@ int nflog_get_uid(struct nflog_data *nfad, u_int32_t *uid)
return 0;
}
+int nflog_get_gid(struct nflog_data *nfad, u_int32_t *gid)
+{
+ if (!nfnl_attr_present(nfad->nfa, NFULA_GID))
+ return -1;
+
+ *gid = ntohl(nfnl_get_data(nfad->nfa, NFULA_GID, u_int32_t));
+ return 0;
+}
+
int nflog_get_seq(struct nflog_data *nfad, u_int32_t *seq)
{
if (!nfnl_attr_present(nfad->nfa, NFULA_SEQ))