()
| 315 | } |
| 316 | |
| 317 | async isReachable(): Promise<boolean> { |
| 318 | try { |
| 319 | // Use info endpoint to test connectivity with 500ms timeout |
| 320 | await send_rpc_request(this.endpoint, '/Info', '{}', 500) |
| 321 | return true |
| 322 | } catch (error) { |
| 323 | return false |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | /** |
| 328 | * Emit an event. This extends the event to RTMR3 on TDX platform. |
nothing calls this directly
no test coverage detected