You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
369 B
20 lines
369 B
// 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
|