summaryrefslogtreecommitdiffstats
path: root/src/daemon/main.c
blob: c2d9297966f79a61612adb8099391c3a417aa198 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* -*- mode: c; c-file-style: "openbsd" -*- */
#include "lldpd.h"

/**
 * @mainpage
 *
 * lldpd is an implementation of 802.1AB (aka LLDP). It provides an interface
 * for third party clients to interact with it: querying neighbors, setting some
 * TLV. This interface is included into a library whose API can be found in @ref
 * liblldpctl
 */

int
main(int argc, char **argv, char **envp)
{
	return lldpd_main(argc, argv, envp);
}