/*1* newio.h -- header file for newio.c2*3* Copyright 1990, 1995 Michael Sandrof, Matthew Green4* Copyright 1997 EPIC Software Labs5*/67#ifndef __newio_h__8#define __newio_h__910#include "ssl.h"1112extern int dgets_errno;1314const char *dgets_strerror(int);15int BX_dgets (char *, int, int, int, void *);16int new_select (fd_set *, fd_set *, struct timeval *);17int BX_new_open (int);18int BX_new_close (int);19int new_close_write (int);20int new_open_write (int);21void set_socket_options (int);22size_t get_pending_bytes (int);2324#define IO_BUFFER_SIZE 81922526#endif272829