// etcp_loadbalancer.h - Load Balancer for ETCP Channels #ifndef ETCP_LOADBALANCER_H #define ETCP_LOADBALANCER_H #include "etcp.h" #ifdef __cplusplus extern "C" { #endif // Functions struct ETCP_LINK* etcp_loadbalancer_select_link(struct ETCP_CONN* etcp); // Add more as needed (e.g., update bandwidth) #ifdef __cplusplus } #endif #endif // ETCP_LOADBALANCER_H