Ignore:
Timestamp:
14/09/2007 22:25:42 (5 years ago)
Author:
chris
Message:

Prepend the system-required prefix to the named pipe name from the
configuration file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/chris/general/lib/server/WinNamedPipeStream.h

    r631 r1833  
    2828 
    2929        // server side - create the named pipe and listen for connections 
    30         void Accept(const wchar_t* Name); 
     30        void Accept(const std::string& rName); 
    3131 
    3232        // client side - connect to a waiting server 
    33         void Connect(const wchar_t* Name); 
     33        void Connect(const std::string& rName); 
    3434 
    3535        // both sides 
     
    6262        bool mIsServer; 
    6363        bool mIsConnected; 
     64 
     65        static std::string sPipeNamePrefix; 
    6466}; 
    6567 
Note: See TracChangeset for help on using the changeset viewer.