org.pcap4j.packet.ChecksumBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pcap4j-core Show documentation
Show all versions of pcap4j-core Show documentation
The core module of Pcap4J.
/*_##########################################################################
_##
_## Copyright (C) 2012 Pcap4J.org
_##
_##########################################################################
*/
package org.pcap4j.packet;
/**
* @author Kaito Yamada
* @since pcap4j 0.9.11
* @param the type of object this builder builds.
*/
public interface ChecksumBuilder {
/**
* @param correctChecksumAtBuild correctChecksumAtBuild
* @return ChecksumBuilder
*/
public ChecksumBuilder correctChecksumAtBuild(boolean correctChecksumAtBuild);
/** @return a new object. */
public T build();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy