http_parser_pause function

  1. @Native<Void Function(Pointer<http_parser>, Int)>(ffi.Pointer<http_parser>, ffi.Int)>()
void http_parser_pause(
  1. Pointer<http_parser> parser,
  2. int paused
)

Pause or un-pause the parser; a nonzero value pauses

Implementation

@ffi.Native<ffi.Void Function(ffi.Pointer<http_parser>, ffi.Int)>()
external void http_parser_pause(ffi.Pointer<http_parser> parser, int paused);