Remove building with NOCRYPTO option
[minix.git] / external / bsd / dhcp / dist / tests / t_api_dhcp.c
blob383bba153240a75dee568b42fd8fff85223901a6
1 /* $NetBSD: t_api_dhcp.c,v 1.1.1.2 2014/07/12 11:58:01 spz Exp $ */
2 /*
3 * We have to have a number of symbols defined in order to build a
4 * DHCP program.
5 */
7 #include <config.h>
8 #include "dhcpd.h"
10 void
11 bootp(struct packet *packet) {
14 void
15 dhcp(struct packet *packet) {
18 void
19 dhcpv6(struct packet *packet) {
22 isc_result_t
23 dhcp_set_control_state(control_object_state_t old, control_object_state_t new) {
24 return ISC_R_NOTIMPLEMENTED;
27 int
28 check_collection(struct packet *p, struct lease *l, struct collection *c) {
29 return 0;
32 void
33 classify (struct packet *p, struct class *c) {
36 isc_result_t
37 find_class(struct class **class, const char *c1, const char *c2, int i) {
38 return ISC_R_NOTFOUND;
41 int
42 parse_allow_deny(struct option_cache **oc, struct parse *p, int i) {
43 return 0;