webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
#include <openssl/bio.h>
#include <assert.h>
#include <errno.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <openssl/buf.h>
#include <openssl/err.h>
#include <openssl/mem.h>
#include "internal.h"
Classes | |
struct | bio_connect_st |
Typedefs | |
typedef struct bio_connect_st | BIO_CONNECT |
Enumerations | |
enum | { BIO_CONN_S_BEFORE, BIO_CONN_S_BLOCKED_CONNECT, BIO_CONN_S_OK } |
Functions | |
BIO * | BIO_new_connect (const char *hostname) |
const BIO_METHOD * | BIO_s_connect (void) |
int | BIO_set_conn_hostname (BIO *bio, const char *name) |
int | BIO_set_conn_port (BIO *bio, const char *port_str) |
int | BIO_set_conn_int_port (BIO *bio, const int *port) |
int | BIO_set_nbio (BIO *bio, int on) |
int | BIO_do_connect (BIO *bio) |
typedef struct bio_connect_st BIO_CONNECT |
anonymous enum |
int BIO_do_connect | ( | BIO * | bio | ) |
BIO* BIO_new_connect | ( | const char * | hostname | ) |
const BIO_METHOD* BIO_s_connect | ( | void | ) |
int BIO_set_conn_hostname | ( | BIO * | bio, |
const char * | name | ||
) |
int BIO_set_conn_int_port | ( | BIO * | bio, |
const int * | port | ||
) |
int BIO_set_conn_port | ( | BIO * | bio, |
const char * | port_str | ||
) |
int BIO_set_nbio | ( | BIO * | bio, |
int | on | ||
) |