2025-05-09 17:00:27 +00:00
|
|
|
/**
|
|
|
|
* Proxy implementations module
|
|
|
|
*/
|
|
|
|
|
2025-05-19 17:28:05 +00:00
|
|
|
// 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';
|
2025-05-13 12:48:41 +00:00
|
|
|
|
2025-05-18 16:30:23 +00:00
|
|
|
// Export SmartProxy with selective imports to avoid conflicts
|
2025-05-19 17:28:05 +00:00
|
|
|
export { SmartProxy, ConnectionManager, SecurityManager, TimeoutManager, TlsManager, HttpProxyBridge, RouteConnectionHandler } from './smart-proxy/index.js';
|
2025-05-13 12:48:41 +00:00
|
|
|
export { RouteManager as SmartProxyRouteManager } from './smart-proxy/route-manager.js';
|
|
|
|
export * from './smart-proxy/utils/index.js';
|
2025-05-18 16:30:23 +00:00
|
|
|
// Export smart-proxy models except IAcmeOptions
|
|
|
|
export type { ISmartProxyOptions, IConnectionRecord, IRouteConfig, IRouteMatch, IRouteAction, IRouteTls, IRouteContext } from './smart-proxy/models/index.js';
|
2025-05-13 12:48:41 +00:00
|
|
|
|
|
|
|
// Export NFTables proxy (no conflicts)
|
2025-05-09 17:00:27 +00:00
|
|
|
export * from './nftables-proxy/index.js';
|