* nvpair.h - Header file for ausearch-nvpair.c
* Copyright (c) 2019 Steve Grubb.
* All Rights Reserved.
*
* This software may be freely redistributed and/or modified under the
* terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2, or (at your option) any
* later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1335, USA.
*
* Authors:
* Steve Grubb <sgrubb@redhat.com>
*/
#ifndef AUNVPAIR_HEADER
#define AUNVPAIR_HEADER
#include <sys/types.h>
#include <time.h>
#include "timer-services.h"
* at this time. Any data elements that are per item goes here. */
typedef struct _nvnode{
jobs_t job;
char *arg;
time_t expiration;
struct _nvnode *next;
} nvnode;
* event goes here. */
typedef struct {
nvnode *head;
nvnode *cur;
nvnode *prev;
unsigned int cnt;
} nvlist;
void nvpair_list_create(nvlist *l);
static inline void nvlist_first(nvlist *l) { l->cur = l->head; }
static inline nvnode *nvpair_list_get_cur(nvlist *l) { return l->cur; }
void nvpair_list_append(nvlist *l, nvnode *node);
void nvpair_list_delete_cur(nvlist *l);
void nvpair_list_clear(nvlist* l);
int nvpair_list_find_job(nvlist *l, time_t t);
#endif