Overview
Comment: | Updated the style for prototypes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2db3a07c5e4e4d6f20ffbf8801e90570 |
User & Date: | rkeene on 2016-12-10 00:52:23 |
Other Links: | manifest | tags |
Context
2016-12-10
| ||
01:43 | Reformatted BIO code check-in: c34f472c39 user: rkeene tags: trunk | |
00:52 | Updated the style for prototypes check-in: 2db3a07c5e user: rkeene tags: trunk | |
00:48 | Added additional debugging check-in: 9686856dd3 user: rkeene tags: trunk | |
Changes
Modified tlsBIO.c from [cad97cf7a0] to [a2664d9c85].
︙ | |||
34 35 36 37 38 39 40 | 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)); |
︙ | |||
63 64 65 66 67 68 69 | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | - + - - - - - | BIO_set_data(bio, statePtr); BIO_set_init(bio, 1); BIO_set_shutdown(bio, flags); return bio; } |
︙ | |||
98 99 100 101 102 103 104 | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | - + - - - - - | } if (BIO_should_read(bio)) { BIO_set_retry_read(bio); } return ret; } |
︙ | |||
145 146 147 148 149 150 151 | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | - + - - - - - + - - - - - - | } dprintf("BioRead(%p, <buf>, %d) [%p] returning %i", (void *) bio, bufLen, (void *) chan, ret); return ret; } |
︙ | |||
221 222 223 224 225 226 227 | 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | - + - - - - - + - - - | default: ret = 0; break; } return(ret); } |
︙ |