ssh_channel_x11_req_callback typedef

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

@brief SSH X11 request from the client. This request is sent by a client when X11 forwarding is requested(and available). Server is free to ignore this callback, no answer is expected. @param channel the channel @param userdata Userdata to be passed to the callback function.

Implementation

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