OLD | NEW |
1 This Source Code Form is subject to the terms of the Mozilla Public | 1 # This Source Code Form is subject to the terms of the Mozilla Public |
2 # License, v. 2.0. If a copy of the MPL was not distributed with this | 2 # License, v. 2.0. If a copy of the MPL was not distributed with this |
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. | 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
4 | 4 |
5 SSL's Buffers: enumerated and explained. | 5 SSL's Buffers: enumerated and explained. |
6 | 6 |
7 --------------------------------------------------------------------------- | 7 --------------------------------------------------------------------------- |
8 incoming: | 8 incoming: |
9 | 9 |
10 gs = ss->gather | 10 gs = ss->gather |
11 hs = ss->ssl3->hs | 11 hs = ss->ssl3->hs |
12 | 12 |
13 gs->inbuf SSL3 only: incoming (encrypted) ssl records are placed here, | 13 gs->inbuf SSL3 only: incoming (encrypted) ssl records are placed here, |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 | 125 |
126 Data variables (not const) protected by the "sslGlobalDataLock". | 126 Data variables (not const) protected by the "sslGlobalDataLock". |
127 Note, this really should be a reader/writer lock. | 127 Note, this really should be a reader/writer lock. |
128 | 128 |
129 allowedByPolicy sslcon.c | 129 allowedByPolicy sslcon.c |
130 maybeAllowedByPolicy sslcon.c | 130 maybeAllowedByPolicy sslcon.c |
131 chosenPreference sslcon.c | 131 chosenPreference sslcon.c |
132 policyWasSet sslcon.c | 132 policyWasSet sslcon.c |
133 | 133 |
134 cipherSuites[] ssl3con.c | 134 cipherSuites[] ssl3con.c |
OLD | NEW |