test-dhcp-server.c revision 4dc355680460fdc8e0d590d8572dff1b6a257d88
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright (C) 2013 Intel Corporation. All rights reserved.
Copyright (C) 2014 Tom Gundersen
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <netinet/if_ether.h>
#include <assert.h>
#include <errno.h>
#include "sd-event.h"
#include "event-util.h"
#include "sd-dhcp-server.h"
#include "dhcp-server-internal.h"
struct in_addr address_lo = {
};
struct in_addr address_any = {
};
/* attach to loopback interface */
}
static void test_message_handler(void) {
struct {
struct {
.end = DHCP_OPTION_END,
};
struct in_addr address_lo = {
};
/* TODO, shouldn't this fail? */
}
log_open();
assert_se(sd_event_new(&e) >= 0);
test_basic(e);
return 0;
}