enum apr_datatype_e

Overview

Used in apr_pollfd_t to determine what the apr_descriptor is Moreā€¦

#include <apr_poll.h>

enum apr_datatype_e {
    APR_NO_DESC,
    APR_POLL_SOCKET,
    APR_POLL_FILE,
    APR_POLL_LASTDESC,
};

Detailed Documentation

Used in apr_pollfd_t to determine what the apr_descriptor is

Enum Values

APR_NO_DESC

nothing here

APR_POLL_SOCKET

descriptor refers to a socket

APR_POLL_FILE

descriptor refers to a file

APR_POLL_LASTDESC

Deprecated descriptor is the last one in the list