// Copyright (c) 1999-2000 David Muse
// See the COPYING file for more information

#ifndef IPSECURITY_H
#define IPSECURITY_H

#include <inputoutput.h>
#include <private/iplistnode.h>

class ipsecurity : virtual public inputoutput {
	public:
			ipsecurity();
		virtual	~ipsecurity();

		void	initIPSecurity(char *site, char *package,
						char *interface, char *app);

		int	allowed();
		int	denied();

		void	dumpIPSecurityEntries();

	private:
		#include <private/ipsecurity.h>
};

#endif