Main Content

writeGlobalHeader

Write global header to PCAP file

Since R2020b

    Description

    example

    writeGlobalHeader(pcapObj,linkType) writes a global header to the PCAP file specified in the PCAP file writer object, pcapObj. Input linkType specifies the unique identifier for a protocol.

    Examples

    collapse all

    Create a PCAP file writer object, specifying the name of the PCAP file.

    pcapObj = pcapWriter('FileName','writeBluetoothLEheader');

    Specify the Bluetooth low energy (LE) link type.

    bleLinkType = 251;

    Write a global header to the PCAP file.

    writeGlobalHeader(pcapObj,bleLinkType);

    Input Arguments

    collapse all

    Note

    The pcapWriter object does not overwrite the existing PCAP file. Each time when you create this object, specify a unique PCAP file name.

    PCAP file writer object, specified as a pcapWriter object.

    Unique identifier for a protocol, specified as an integer in the range [0, 65535].

    Data Types: double

    References

    [1] Group, The Tcpdump. “Tcpdump/Libpcap Public Repository.” Accessed May 20, 2020. https://www.tcpdump.org.

    [2] “Development/LibpcapFileFormat - The Wireshark Wiki.” Accessed May 20, 2020. https://www.wireshark.org.

    Extended Capabilities

    C/C++ Code Generation
    Generate C and C++ code using MATLAB® Coder™.

    Version History

    Introduced in R2020b

    See Also

    Functions

    Objects