Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Minor whitespace cleanup |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
88815cbc52be74a9a27f94e899e644dd |
| User & Date: | rkeene 2016-12-10 04:29:39 |
Context
|
2016-12-10
| ||
| 05:02 | More modernization of the code check-in: 2771dc7670 user: rkeene tags: trunk | |
| 04:30 | Create new branch named "feature-multibackend" check-in: 1ea42ade67 user: rkeene tags: feature-multibackend | |
| 04:29 | Minor whitespace cleanup check-in: 88815cbc52 user: rkeene tags: trunk | |
| 02:55 | Removed backwards compatibility hacks and much reformatting check-in: f087e1fe61 user: rkeene tags: trunk | |
Changes
Changes to tlsBIO.c.
| ︙ | ︙ | |||
34 35 36 37 38 39 40 | 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)); | | | 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");
|
| ︙ | ︙ |