Function
externalCommand
(
connection: Connection,
command: ReturnType<typeof saslStart> | ReturnType<typeof saslContinue>
)
Source from the content-addressed store, hash-verified
| 27 | }; |
| 28 | |
| 29 | async function externalCommand( |
| 30 | connection: Connection, |
| 31 | command: ReturnType<typeof saslStart> | ReturnType<typeof saslContinue> |
| 32 | ): Promise<{ payload: string; conversationId: number }> { |
| 33 | const response = await connection.command(ns('$external.$cmd'), command); |
| 34 | return response as { payload: string; conversationId: number }; |
| 35 | } |
| 36 | |
| 37 | let krb: Kerberos; |
| 38 | |
Tested by
no test coverage detected