union apr_descriptor

Overview

Union of either an APR file or socket. Moreā€¦

#include <apr_poll.h>

union apr_descriptor {
    // fields

    apr_file_t* f;
    apr_socket_t* s;
};

Detailed Documentation

Union of either an APR file or socket.

Fields

apr_file_t* f

file

apr_socket_t* s

socket