34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
static int BioWrite _ANSI_ARGS_((BIO *h, CONST char *buf, int num));
static int BioRead _ANSI_ARGS_((BIO *h, char *buf, int num));
static int BioPuts _ANSI_ARGS_((BIO *h, CONST char *str));
static long BioCtrl _ANSI_ARGS_((BIO *h, int cmd, long arg1, void *ptr));
static int BioNew _ANSI_ARGS_((BIO *h));
static int BioFree _ANSI_ARGS_((BIO *h));
BIO * BIO_new_tcl(State *statePtr, int flags) {
BIO *bio;
static BIO_METHOD *BioMethods = NULL;
dprintf("BIO_new_tcl() called");
if (BioMethods == NULL) {
BioMethods = BIO_meth_new(BIO_TYPE_TCL, "tcl");
|
|
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
static int BioWrite _ANSI_ARGS_((BIO *h, CONST char *buf, int num));
static int BioRead _ANSI_ARGS_((BIO *h, char *buf, int num));
static int BioPuts _ANSI_ARGS_((BIO *h, CONST char *str));
static long BioCtrl _ANSI_ARGS_((BIO *h, int cmd, long arg1, void *ptr));
static int BioNew _ANSI_ARGS_((BIO *h));
static int BioFree _ANSI_ARGS_((BIO *h));
BIO *BIO_new_tcl(State *statePtr, int flags) {
BIO *bio;
static BIO_METHOD *BioMethods = NULL;
dprintf("BIO_new_tcl() called");
if (BioMethods == NULL) {
BioMethods = BIO_meth_new(BIO_TYPE_TCL, "tcl");
|