/** * Proxy implementations module */ // Export NetworkProxy with selective imports to avoid conflicts export { NetworkProxy, CertificateManager, ConnectionPool, RequestHandler, WebSocketHandler } from './network-proxy/index.js'; export type { IMetricsTracker, MetricsTracker } from './network-proxy/index.js'; // Export network-proxy models except IAcmeOptions export type { INetworkProxyOptions, ICertificateEntry, ILogger } from './network-proxy/models/types.js'; export { RouteManager as NetworkProxyRouteManager } from './network-proxy/models/types.js'; // Export SmartProxy with selective imports to avoid conflicts export { SmartProxy, ConnectionManager, SecurityManager, TimeoutManager, TlsManager, NetworkProxyBridge, RouteConnectionHandler } from './smart-proxy/index.js'; export { RouteManager as SmartProxyRouteManager } from './smart-proxy/route-manager.js'; export * from './smart-proxy/utils/index.js'; // Export smart-proxy models except IAcmeOptions export type { ISmartProxyOptions, IConnectionRecord, IRouteConfig, IRouteMatch, IRouteAction, IRouteTls, IRouteContext } from './smart-proxy/models/index.js'; // Export NFTables proxy (no conflicts) export * from './nftables-proxy/index.js';