| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Gather (Read) entire SSL3 records from socket into buffer. | 2 * Gather (Read) entire SSL3 records from socket into buffer. |
| 3 * | 3 * |
| 4 * This Source Code Form is subject to the terms of the Mozilla Public | 4 * This Source Code Form is subject to the terms of the Mozilla Public |
| 5 * License, v. 2.0. If a copy of the MPL was not distributed with this | 5 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 7 /* $Id: ssl3gthr.c,v 1.14 2012/04/25 14:50:12 gerv%gerv.net Exp $ */ | 7 /* $Id$ */ |
| 8 | 8 |
| 9 #include "cert.h" | 9 #include "cert.h" |
| 10 #include "ssl.h" | 10 #include "ssl.h" |
| 11 #include "sslimpl.h" | 11 #include "sslimpl.h" |
| 12 #include "ssl3prot.h" | 12 #include "ssl3prot.h" |
| 13 | 13 |
| 14 /* | 14 /* |
| 15 * Attempt to read in an entire SSL3 record. | 15 * Attempt to read in an entire SSL3 record. |
| 16 * Blocks here for blocking sockets, otherwise returns -1 with | 16 * Blocks here for blocking sockets, otherwise returns -1 with |
| 17 * PR_WOULD_BLOCK_ERROR when socket would block. | 17 * PR_WOULD_BLOCK_ERROR when socket would block. |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 { | 399 { |
| 400 int rv; | 400 int rv; |
| 401 | 401 |
| 402 PORT_Assert( ss->opt.noLocks || ssl_HaveRecvBufLock(ss) ); | 402 PORT_Assert( ss->opt.noLocks || ssl_HaveRecvBufLock(ss) ); |
| 403 do { | 403 do { |
| 404 rv = ssl3_GatherCompleteHandshake(ss, flags); | 404 rv = ssl3_GatherCompleteHandshake(ss, flags); |
| 405 } while (rv > 0 && ss->gs.buf.len == 0); | 405 } while (rv > 0 && ss->gs.buf.len == 0); |
| 406 | 406 |
| 407 return rv; | 407 return rv; |
| 408 } | 408 } |
| OLD | NEW |