Ignore:
Timestamp:
04/19/05 00:50:16 (8 years ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2, stable
Children:
d656933
Parents:
aaa9a22
Message:

MAJOR CHANGES
2004-04-19 MickeM

+ Added SSL support
+ Added alot of new options
+ Added documentation

  • Renamed and restructured NSCLientCompat to CheckSystem
  • *ALOT* of fixes all over : We are now starting to get to something that is "stable" : This means that soon you might actually be able to use this.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/NSClientListener/NSClientListener.h

    r1a5449e rcea178b  
    1 #include "NSClientSocket.h" 
     1#include <Socket.h> 
     2#include <string> 
     3#include <utils.h> 
    24 
    35NSC_WRAPPERS_MAIN(); 
    46 
    5 class NSClientListener { 
     7class NSClientListener  : public simpleSocket::ListenerHandler { 
    68private: 
    7   NSClientSocket socket; 
     9  simpleSocket::Listener<> socket; 
     10  socketHelpers::allowedHosts allowedHosts; 
    811 
    912public: 
     
    1518  std::string getModuleName(); 
    1619  NSCModuleWrapper::module_version getModuleVersion(); 
     20  std::string parseRequest(std::string buffer); 
     21 
     22  // simpleSocket::ListenerHandler implementation 
     23  void onAccept(simpleSocket::Socket &client); 
     24  void onClose(); 
     25 
    1726}; 
Note: See TracChangeset for help on using the changeset viewer.