Explorar el Código

* Make some properties public

Michaël Van Canneyt hace 3 años
padre
commit
b08c12ff8a
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. 9 0
      packages/fcl-web/src/base/custhttpapp.pp

+ 9 - 0
packages/fcl-web/src/base/custhttpapp.pp

@@ -35,10 +35,19 @@ Type
   protected
     Procedure InitRequest(ARequest : TFPHTTPConnectionRequest); override;
     Procedure InitResponse(AResponse : TFPHTTPConnectionResponse); override;
+  Public
     Property WebHandler : TFPHTTPServerHandler Read FWebHandler;
     Property Active;
     Property OnAcceptIdle;
     Property AcceptIdleTimeout;
+    Property Address;
+    property AdminMail;
+    property AdminName;
+    property ServerBanner;
+    Property LookupHostNames;
+    property HostName;
+    Property CertificateData;
+    Property UseSSL;
   end;
 
   { TFCgiHandler }