on_rx_response property
Pointer<NativeFunction<pj_bool_t Function(Pointer<pjsip_rx_data> rdata)> >
on_rx_response
getter/setter pair
Optional function to be called to process incoming response message.
@param rdata The incoming message.
@return Module should return PJ_TRUE if it handles the response, or otherwise it should return PJ_FALSE to allow other modules to handle the response.
Implementation
external ffi.Pointer<
ffi
.NativeFunction<pj_bool_t Function(ffi.Pointer<pjsip_rx_data> rdata)>>
on_rx_response;