Changeset 6b98359629dd39bf8458179390a951ccd05fbea7
- Timestamp:
- 05/27/10 17:24:56
(3 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1274981096 +0000
- git-parent:
[c16a9e1b980aa4452e528ae1b81aef8ad6e76fb1]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1274981096 +0000
- Message:
refs #284
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra5e761d |
r6b98359 |
|
| 86 | 86 | result = APR_SUCCESS; |
|---|
| 87 | 87 | rc = apr_socket_shutdown(connection->socket, APR_SHUTDOWN_WRITE); |
|---|
| 88 | | if( result!=APR_SUCCESS ) |
|---|
| | 88 | if( rc!=APR_SUCCESS ) |
|---|
| 89 | 89 | result = rc; |
|---|
| 90 | 90 | |
|---|
| 91 | 91 | if( connection->socket != NULL ) { |
|---|
| 92 | 92 | rc = apr_socket_close(connection->socket); |
|---|
| 93 | | if( result!=APR_SUCCESS ) |
|---|
| | 93 | if( rc!=APR_SUCCESS ) |
|---|
| 94 | 94 | result = rc; |
|---|
| 95 | 95 | connection->socket=NULL; |
|---|
| 96 | 96 | } |
|---|
| 97 | 97 | *connection_ref=NULL; |
|---|
| 98 | | return rc; |
|---|
| | 98 | return result; |
|---|
| 99 | 99 | } |
|---|
| 100 | 100 | |
|---|