2026-02-01 17:40:36 +00:00
|
|
|
// @push.rocks/smartradius
|
|
|
|
|
// RADIUS Server and Client Library
|
|
|
|
|
// Implements RFC 2865 (Authentication) and RFC 2866 (Accounting)
|
2026-02-01 15:44:22 +00:00
|
|
|
|
2026-02-01 17:40:36 +00:00
|
|
|
// Re-export shared protocol definitions
|
|
|
|
|
export * from '../ts_shared/index.js';
|
|
|
|
|
|
|
|
|
|
// Re-export server module
|
|
|
|
|
export * from '../ts_server/index.js';
|
|
|
|
|
|
|
|
|
|
// Re-export client module
|
|
|
|
|
export { RadiusClient } from '../ts_client/index.js';
|
|
|
|
|
export type {
|
|
|
|
|
IRadiusClientOptions,
|
|
|
|
|
IClientAuthRequest,
|
|
|
|
|
IClientAuthResponse,
|
|
|
|
|
IClientAccountingRequest,
|
|
|
|
|
IClientAccountingResponse,
|
|
|
|
|
} from '../ts_client/index.js';
|