///|
fn ffi_pcap_open(path : Bytes, snaplen : Int, linktype : Int) -> Int {
  ignore(path)
  ignore(snaplen)
  ignore(linktype)
  -1
}

///|
fn ffi_pcap_write_packet(fd : Int, frame : Bytes) -> Int {
  ignore(fd)
  ignore(frame)
  -1
}

///|
fn ffi_pcap_write_packet_at(
  fd : Int,
  frame : Bytes,
  sec : Int,
  usec : Int,
) -> Int {
  ignore(fd)
  ignore(frame)
  ignore(sec)
  ignore(usec)
  -1
}

///|
fn ffi_pcap_close(fd : Int) -> Int {
  ignore(fd)
  -1
}