Changeset 30bfe74 in nscp for NSCPlugin.h


Ignore:
Timestamp:
11/12/07 20:26:00 (6 years ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2, stable
Children:
5782414
Parents:
eceb8c7
Message:

2007-11-12 MickeM

+ Added option to configure socket_timeout (default is now 30 seconds) should (I hope) fix issue #85

2007-11-11 MickeM

+ Added option to configure the behavior of CheckService? CheckAll? (#64)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NSCPlugin.h

    r860f310 r30bfe74  
    5959   */ 
    6060  NSPluginException(std::string file, std::string error) : file_(file), error_(error) { 
    61   } 
    62   /** 
    63    * 
    64    * @param file DLL filename (for which the exception is thrown) 
    65    * @param sError An error message (human readable format) 
    66    * @param nError Error code to be appended at the end of the string 
    67    * @todo Change this to be some form of standard error code and merge with above. 
    68    */ 
    69   NSPluginException(std::string file, std::string sError, int nError) : file_(file) { 
    70     std::stringstream s; 
    71     s << sError; 
    72     s << nError; 
    73     error_ = s.str(); 
    74  
    7561  } 
    7662}; 
Note: See TracChangeset for help on using the changeset viewer.