diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2016-11-13 08:02:23 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-03-07 23:07:20 +0100 |
commit | 4f04a76b717fc4881a547f582a02a4d06d356c47 (patch) | |
tree | 90951be570b6de3889da7c5358b1fe2f998d4acd /lib/sockopt.h | |
parent | Merge pull request #257 from opensourcerouting/nhrpd (diff) | |
download | frr-4f04a76b717fc4881a547f582a02a4d06d356c47.tar.xz frr-4f04a76b717fc4881a547f582a02a4d06d356c47.zip |
*: add frr_init() infrastructure
Start centralising startup & option parsing into the library.
FRR_DAEMON_INFO is a bit weird, but it will become useful later (e.g.
for killing the ZLOG_* enum, and having the daemon name available)
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/sockopt.h')
-rw-r--r-- | lib/sockopt.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/sockopt.h b/lib/sockopt.h index d5724ce60..1b7be1e49 100644 --- a/lib/sockopt.h +++ b/lib/sockopt.h @@ -24,10 +24,6 @@ #include "sockunion.h" -/* Override (vty) socket paths, but keep the filename */ -extern void set_socket_path (char *path, const char *defaultpath, - char *newpath, int maxsize); - extern void setsockopt_so_recvbuf (int sock, int size); extern void setsockopt_so_sendbuf (const int sock, int size); extern int getsockopt_so_sendbuf (const int sock); |