]> git.proxmox.com Git - mirror_frr.git/blame - babeld/net.h
Merge pull request #13097 from AbhishekNR/mroute
[mirror_frr.git] / babeld / net.h
CommitLineData
acddc0ed 1// SPDX-License-Identifier: MIT
ca10883e
DS
2/*
3Copyright (c) 2007, 2008 by Juliusz Chroboczek
ca10883e
DS
4*/
5
6#ifndef BABEL_NET_H
7#define BABEL_NET_H
8
9int babel_socket(int port);
10int babel_recv(int s, void *buf, int buflen, struct sockaddr *sin, int slen);
11int babel_send(int s,
12 void *buf1, int buflen1, void *buf2, int buflen2,
13 struct sockaddr *sin, int slen);
14int tcp_server_socket(int port, int local);
15
16#endif /* BABEL_NET_H */