@cto.af/pcap-ng-parser
    Preparing search index...

    Interface ParseEvents

    interface ParseEvents {
        blockType: [number];
        close: [];
        custom: [CustomBlock];
        data: [Packet];
        drain: [];
        end: [];
        error: [unknown];
        finish: [];
        interface: [Interface];
        names: [NameResolution];
        pause: [];
        pipe: [Readable];
        readable: [];
        resume: [];
        secrets: [DecryptionSecrets];
        section: [SectionHeader];
        stats: [InterfaceStatistics];
        unpipe: [Readable];
    }
    Index

    Properties

    blockType: [number]

    Unknown block type received.

    close: []

    Both ends of the stream have closed.

    custom: [CustomBlock]

    A Custom block was read.

    data: [Packet]

    A Simple or Extended Packet was read.

    drain: []

    If a call to stream.write(chunk) returns false, the 'drain' event will be emitted when it is appropriate to resume writing data to the stream.

    end: []

    There is no more data to be consumed from the stream.

    error: [unknown]

    Error in parsing.

    finish: []

    The input to the parse stream has ended.

    interface: [Interface]

    An Interface record was read.

    A NameResolution record was read.

    pause: []

    stream.pause() was called.

    pipe: [Readable]

    Output of stream was redirect.

    readable: []

    Data is available to be read from the stream.

    resume: []

    stream.resume() was called.

    A Decryption Secrets block was read.

    section: [SectionHeader]

    A new Section has started. Always emitted before other parse events in a valid file.

    Interface Statistics block was read.

    unpipe: [Readable]

    stream.unpipe() was called.