diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2022-03-12 12:52:34 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2022-03-12 12:55:12 +0100 |
commit | c532e50351691077263be0aca9a19755b8bed7b0 (patch) | |
tree | 65330cd94f84a571032038771f091261dd26e40f /pimd/pim_sock.h | |
parent | Merge pull request #10662 from chiragshah6/evpn_dev1 (diff) | |
download | frr-c532e50351691077263be0aca9a19755b8bed7b0.tar.xz frr-c532e50351691077263be0aca9a19755b8bed7b0.zip |
pimd: drop printing IP_MULTICAST_LOOP sockopt
This isn't a system or interface setting, it's a socket behavior. It is
both irrelevant and confusing to the user since it doesn't affect any
system behavior (but it sounds like it does). Whether it is enabled or
not is solely relevant to how the code is designed to work.
So, remove it from output.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_sock.h')
-rw-r--r-- | pimd/pim_sock.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pimd/pim_sock.h b/pimd/pim_sock.h index 08b009932..7081e38f8 100644 --- a/pimd/pim_sock.h +++ b/pimd/pim_sock.h @@ -47,8 +47,6 @@ int pim_socket_recvfromto(int fd, uint8_t *buf, size_t len, struct sockaddr_in *to, socklen_t *tolen, ifindex_t *ifindex); -int pim_socket_mcastloop_get(int fd); - int pim_socket_getsockname(int fd, struct sockaddr *name, socklen_t *namelen); #endif /* PIM_SOCK_H */ |