Ignore:
Timestamp:
21/08/2008 12:04:21 (4 years ago)
Author:
chris
Message:

Make Open() take a const std::string& for the socket name instead of a
const char *, for C++ style.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/lib/server/SocketStreamTLS.cpp

    r2090 r2253  
    100100// 
    101101// -------------------------------------------------------------------------- 
    102 void SocketStreamTLS::Open(const TLSContext &rContext, int Type, const char *Name, int Port) 
    103 { 
    104         SocketStream::Open(Type, Name, Port); 
     102void SocketStreamTLS::Open(const TLSContext &rContext, int Type, 
     103        const std::string& rName, int Port) 
     104{ 
     105        SocketStream::Open(Type, rName, Port); 
    105106        Handshake(rContext); 
    106107        ResetCounters(); 
Note: See TracChangeset for help on using the changeset viewer.