Changeset d656933 in nscp for include/SSLSocket.cpp
- Timestamp:
- 04/20/05 21:08:49 (8 years ago)
- Branches:
- master, 0.4.0, 0.4.1, 0.4.2, stable
- Children:
- 945c381
- Parents:
- cea178b
- File:
-
- 1 edited
-
include/SSLSocket.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
include/SSLSocket.cpp
rcea178b rd656933 66 66 } 67 67 68 bool simpleSSL::Listener::accept(tSocket &client) { 69 client.setContext(context); 70 if (!simpleSocket::Socket::accept(client)) 71 return false; 72 return true; 68 bool simpleSSL::Listener::accept(tSocket *client) { 69 assert(client); 70 client->setContext(context); 71 return simpleSocket::Socket::accept(client); 73 72 } 74 73
Note: See TracChangeset
for help on using the changeset viewer.








