(password: string)
| 46 | } |
| 47 | |
| 48 | const password = (password: string): Uint8Array => { |
| 49 | return writer.addCString(password).flush(code.startup) |
| 50 | } |
| 51 | |
| 52 | const sendSASLInitialResponseMessage = ( |
| 53 | mechanism: string, |
nothing calls this directly
no test coverage detected