ssh_channel_pty_request_callback typedef

ssh_channel_pty_request_callback = Pointer<NativeFunction<Int32 Function(Int32, Pointer<ssh_channel>, Pointer<Int8>, Int32, Int32, Int32, Int32, Pointer<Void>)>>

@brief SSH channel PTY request from a client. @param channel the channel @param term The type of terminal emulation @param width width of the terminal, in characters @param height height of the terminal, in characters @param pxwidth width of the terminal, in pixels @param pxheight height of the terminal, in pixels @param userdata Userdata to be passed to the callback function. @returns 0 if the pty request is accepted @returns -1 if the request is denied

Implementation

typedef ssh_channel_pty_request_callback = ffi.Pointer<
    ffi.NativeFunction<
        ffi.Int32 Function(ffi.Int32, ffi.Pointer<ssh_channel>, ffi.Pointer<ffi.Int8>, ffi.Int32, ffi.Int32, ffi.Int32,
            ffi.Int32, ffi.Pointer<ffi.Void>)>>;