on_rx_request property

Pointer<NativeFunction<pj_bool_t Function(Pointer<pjsip_rx_data> rdata)>> on_rx_request
getter/setter pair

Optional function to be called to process incoming request message.

@param rdata The incoming message.

@return Module should return PJ_TRUE if it handles the request, or otherwise it should return PJ_FALSE to allow other modules to handle the request.

Implementation

external ffi.Pointer<
        ffi
        .NativeFunction<pj_bool_t Function(ffi.Pointer<pjsip_rx_data> rdata)>>
    on_rx_request;