Sfoglia il codice sorgente

fcl-net: fixed comments

mattias 2 mesi fa
parent
commit
88d57454a0
1 ha cambiato i file con 4 aggiunte e 3 eliminazioni
  1. 4 3
      packages/fcl-net/src/sslbase.pp

+ 4 - 3
packages/fcl-net/src/sslbase.pp

@@ -50,7 +50,6 @@ Const
   StrDataCount = 2; // 0 based.
 
 Type
-  { TSSLSocketHandler }
 
   { TCertificateData }
 
@@ -81,12 +80,15 @@ Type
     Property TrustedCertsDir : String Read FTrustedCertsDir Write FTrustedCertsDir;
   end;
 
-    { TX509Certificate }
+  { TCertAndKey }
+
   TCertAndKey = Record
     Certificate : TBytes;
     PrivateKey : TBytes;
   end;
 
+  { TX509Certificate }
+
   TX509Certificate = Class (TObject)
   private
     FCommonName: string;
@@ -120,7 +122,6 @@ Type
     Property Version : Integer Read GetVersion Write FVersion;
     // Serial. If zero, then a serial is generated.
     Property Serial : Integer Read FSerial Write FSerial;
-
   end;
 
 implementation