Remote Call Framework 3.1
Schannel.hpp
1 
2 //******************************************************************************
3 // RCF - Remote Call Framework
4 //
5 // Copyright (c) 2005 - 2019, Delta V Software. All rights reserved.
6 // http://www.deltavsoft.com
7 //
8 // RCF is distributed under dual licenses - closed source or GPL.
9 // Consult your particular license for conditions of use.
10 //
11 // If you have not purchased a commercial license, you are using RCF
12 // under GPL terms.
13 //
14 // Version: 3.1
15 // Contact: support <at> deltavsoft.com
16 //
17 //******************************************************************************
18 
19 #ifndef INCLUDE_RCF_SCHANNEL_HPP
20 #define INCLUDE_RCF_SCHANNEL_HPP
21 
22 #include <RCF/Filter.hpp>
23 #include <RCF/SspiFilter.hpp>
24 #include <RCF/Tchar.hpp>
25 
26 #include <schnlsp.h>
27 
28 namespace RCF {
29 
30  class SchannelServerFilter : public SspiServerFilter
31  {
32  public:
33  SchannelServerFilter(
34  RcfServer & server,
35  DWORD enabledProtocols,
36  ULONG contextRequirements);
37 
38  int getFilterId() const;
39  };
40 
41  class SchannelFilterFactory : public FilterFactory
42  {
43  public:
44  SchannelFilterFactory();
45  FilterPtr createFilter(RcfServer & server);
46  int getFilterId();
47  };
48 
49  class SchannelClientFilter : public SspiClientFilter
50  {
51  public:
52  SchannelClientFilter(ClientStub * pClientStub);
53  int getFilterId() const;
54  };
55 
56  typedef SchannelClientFilter SchannelFilter;
57 
58 } // namespace RCF
59 
60 #endif // ! INCLUDE_RCF_SCHANNEL_HPP
Definition: AmiIoHandler.hpp:24