]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_sock.h
Merge pull request #13649 from donaldsharp/unlock_the_node_or_else
[mirror_frr.git] / pimd / pim_sock.h
CommitLineData
acddc0ed 1// SPDX-License-Identifier: GPL-2.0-or-later
12e41d03 2/*
896014f4
DL
3 * PIM for Quagga
4 * Copyright (C) 2008 Everton da Silva Marques
896014f4 5 */
12e41d03
DL
6
7#ifndef PIM_SOCK_H
8#define PIM_SOCK_H
9
10#include <netinet/in.h>
11
12#define PIM_SOCK_ERR_NONE (0) /* No error */
13#define PIM_SOCK_ERR_SOCKET (-1) /* socket() */
14#define PIM_SOCK_ERR_RA (-2) /* Router Alert option */
15#define PIM_SOCK_ERR_REUSE (-3) /* Reuse option */
16#define PIM_SOCK_ERR_TTL (-4) /* TTL option */
17#define PIM_SOCK_ERR_LOOP (-5) /* Loopback option */
18#define PIM_SOCK_ERR_IFACE (-6) /* Outgoing interface option */
19#define PIM_SOCK_ERR_DSTADDR (-7) /* Outgoing interface option */
20#define PIM_SOCK_ERR_NONBLOCK_GETFL (-8) /* Get O_NONBLOCK */
21#define PIM_SOCK_ERR_NONBLOCK_SETFL (-9) /* Set O_NONBLOCK */
22#define PIM_SOCK_ERR_NAME (-10) /* Socket name (getsockname) */
61ea3951 23#define PIM_SOCK_ERR_BIND (-11) /* Can't bind to interface */
12e41d03 24
993e3d8e
DL
25struct pim_instance;
26
d62a17ae 27int pim_socket_bind(int fd, struct interface *ifp);
e691f179 28void pim_socket_ip_hdr(int fd);
12e41d03 29int pim_socket_raw(int protocol);
023d3e4a 30int pim_socket_mcast(int protocol, pim_addr ifaddr, struct interface *ifp,
d7c0a89a 31 uint8_t loop);
f2058cb4
DA
32int pim_socket_join(int fd, pim_addr group, pim_addr ifaddr, ifindex_t ifindex,
33 struct pim_interface *pim_ifp);
12e41d03 34int pim_socket_recvfromto(int fd, uint8_t *buf, size_t len,
023d3e4a
BG
35 struct sockaddr_storage *from, socklen_t *fromlen,
36 struct sockaddr_storage *to, socklen_t *tolen,
b892f1dd 37 ifindex_t *ifindex);
12e41d03 38
12e41d03
DL
39int pim_socket_getsockname(int fd, struct sockaddr *name, socklen_t *namelen);
40
94619539
MR
41int pim_reg_sock(void);
42
12e41d03 43#endif /* PIM_SOCK_H */