/** * Proxy implementations module */ // Export HttpProxy with selective imports to avoid conflicts export { HttpProxy, CertificateManager, ConnectionPool, RequestHandler, WebSocketHandler } from './http-proxy/index.js'; export type { IMetricsTracker, MetricsTracker } from './http-proxy/index.js'; // Export http-proxy models except IAcmeOptions export type { IHttpProxyOptions, ICertificateEntry, ILogger } from './http-proxy/models/types.js'; export { RouteManager as HttpProxyRouteManager } from './http-proxy/models/types.js'; // Export SmartProxy with selective imports to avoid conflicts export { SmartProxy, ConnectionManager, SecurityManager, TimeoutManager, TlsManager, HttpProxyBridge, 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';