All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jnr.posix.CmsgHdr Maven / Gradle / Ivy

There is a newer version: 3.6.0-1
Show newest version
package jnr.posix;

import java.nio.ByteBuffer;

/**
 * @author Bob McWhirter
 */
public interface CmsgHdr {

    void setLevel(int level);

    int getLevel();

    void setType(int type);

    int getType();

    void setData(ByteBuffer data);

    ByteBuffer getData();

    int getLen();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy