]> git.proxmox.com Git - mirror_frr.git/blobdiff - ospf6d/ospf6_network.h
ospf6d: add write-multiplier configuration
[mirror_frr.git] / ospf6d / ospf6_network.h
index 0ec7975e14dd98347ec1f41a72f39e5affed00d4..3886a0d263261b6a45b3a2c44edb7c4caf8b257b 100644 (file)
@@ -26,7 +26,8 @@ extern struct in6_addr alldrouters6;
 
 extern int ospf6_serv_sock(struct ospf6 *ospf6);
 extern void ospf6_serv_close(int *ospf6_sock);
-extern int ospf6_sso(ifindex_t ifindex, struct in6_addr *group, int option);
+extern int ospf6_sso(ifindex_t ifindex, struct in6_addr *group, int option,
+                    int sockfd);
 
 extern int ospf6_sendmsg(struct in6_addr *src, struct in6_addr *dst,
                         ifindex_t ifindex, struct iovec *message,
@@ -35,4 +36,19 @@ extern int ospf6_recvmsg(struct in6_addr *src, struct in6_addr *dst,
                         ifindex_t *ifindex, struct iovec *message,
                         int ospf6_sock);
 
+#define OSPF6_MESSAGE_WRITE_ON(oi)                                             \
+       do {                                                                   \
+               bool list_was_empty =                                          \
+                       list_isempty(oi->area->ospf6->oi_write_q);             \
+               if ((oi)->on_write_q == 0) {                                   \
+                       listnode_add(oi->area->ospf6->oi_write_q, (oi));       \
+                       (oi)->on_write_q = 1;                                  \
+               }                                                              \
+               if (list_was_empty                                             \
+                   && !list_isempty(oi->area->ospf6->oi_write_q))             \
+                       thread_add_write(master, ospf6_write, oi->area->ospf6, \
+                                        oi->area->ospf6->fd,                  \
+                                        &oi->area->ospf6->t_write);           \
+       } while (0)
+
 #endif /* OSPF6_NETWORK_H */