xref: /original-bsd/sbin/mount_portal/pt_conf.c (revision c3e32dec)
1 /*
2  * Copyright (c) 1992, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * All rights reserved.
5  *
6  * This code is derived from software donated to Berkeley by
7  * Jan-Simon Pendry.
8  *
9  * %sccs.include.redist.c%
10  *
11  *	@(#)pt_conf.c	8.1 (Berkeley) 06/05/93
12  *
13  * $Id: pt_conf.c,v 1.2 1992/05/27 07:09:27 jsp Exp jsp $
14  */
15 
16 #include <sys/types.h>
17 #include <sys/param.h>
18 #include "portald.h"
19 
20 provider providers[] = {
21 	{ "exec",	portal_exec },
22 	{ "file",	portal_file },
23 	{ "tcp",	portal_tcp },
24 	{ 0, 0 }
25 };
26