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

jnr.posix.MsgHdr 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 MsgHdr {

    void setName(String name);
    String getName();

    void setIov(ByteBuffer[] buffers);
    ByteBuffer[] getIov();


    void setFlags(int flags);
    int getFlags();

    CmsgHdr allocateControl(int dataLength);
    CmsgHdr[] allocateControls(int[] dataLengths);

    CmsgHdr[] getControls();
    int getControlLen();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy