File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / ntp / sntp / kod_management.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:08:38 2012 UTC (12 years ago) by misho
Branches: ntp, MAIN
CVS tags: v4_2_6p5p0, v4_2_6p5, HEAD
ntp 4.2.6p5

#ifndef KOD_MANAGEMENT_H
#define KOD_MANAGEMENT_H

#include <time.h>

struct kod_entry {
	char hostname[255];
	time_t timestamp;
	char type[5];
};

int search_entry(char *hostname, struct kod_entry **dst);

void add_entry(char *hostname, char *type);
void delete_entry(char *hostname, char *type);
void kod_init_kod_db(const char *db_file);
void write_kod_db(void);


#endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>