Browse Source

Updated iSCSI parameters summary

Tal Aloni 8 years ago
parent
commit
359f9e1ef6

+ 5 - 3
ISCSI/ISCSI.Client/DefaultParameters.cs

@@ -41,12 +41,12 @@ namespace ISCSI.Client
             public const int FirstBurstLength = 65536;
 
             /// <summary>
-            /// minimum time, in seconds, to wait before attempting an explicit/implicit logout after connection termination / reset.
+            /// Minimum time, in seconds, to wait before attempting an explicit/implicit logout after connection termination / reset.
             /// </summary>
             public const int DefaultTime2Wait = 2;
 
             /// <summary>
-            /// maximum time, in seconds after an initial wait (Time2Wait), before which an active task reassignment
+            /// Maximum time, in seconds after an initial wait (Time2Wait), before which an active task reassignment
             /// is still possible after an unexpected connection termination or a connection reset.
             /// </summary>
             public const int DefaultTime2Retain = 20;
@@ -63,7 +63,9 @@ namespace ISCSI.Client
         public class Connection
         {
             /// <summary>
-            /// The default MaxRecvDataSegmentLength is used during Login
+            /// Maximum data segment length that the target or initator can receive in an iSCSI PDU.
+            /// Per direction parameter that the target or initator declares.
+            /// The default MaxRecvDataSegmentLength is used during Login.
             /// </summary>
             public const int MaxRecvDataSegmentLength = 8192;
         }

+ 0 - 5
ISCSI/ISCSI.Client/ISCSIClient.Parameters.cs

@@ -29,11 +29,6 @@ namespace ISCSI.Client
         public class DeclaredParameters
         {
             // Connection parameters:
-            
-            /// <summary>
-            /// per direction parameter that the target or initator declares.
-            /// maximum data segment length that the target (or initator) can receive in a single iSCSI PDU.
-            /// </summary>
             public static int MaxRecvDataSegmentLength = 262144;
         }
     }

+ 5 - 3
ISCSI/ISCSI.Server/DefaultParameters.cs

@@ -41,12 +41,12 @@ namespace ISCSI.Server
             public const int FirstBurstLength = 65536;
 
             /// <summary>
-            /// minimum time, in seconds, to wait before attempting an explicit/implicit logout after connection termination / reset.
+            /// Minimum time, in seconds, to wait before attempting an explicit/implicit logout after connection termination / reset.
             /// </summary>
             public const int DefaultTime2Wait = 2;
 
             /// <summary>
-            /// maximum time, in seconds after an initial wait (Time2Wait), before which an active task reassignment
+            /// Maximum time, in seconds after an initial wait (Time2Wait), before which an active task reassignment
             /// is still possible after an unexpected connection termination or a connection reset.
             /// </summary>
             public const int DefaultTime2Retain = 20;
@@ -63,7 +63,9 @@ namespace ISCSI.Server
         public class Connection
         {
             /// <summary>
-            /// The default MaxRecvDataSegmentLength is used during Login
+            /// Maximum data segment length that the target or initator can receive in an iSCSI PDU.
+            /// Per direction parameter that the target or initator declares.
+            /// The default MaxRecvDataSegmentLength is used during Login.
             /// </summary>
             public const int MaxRecvDataSegmentLength = 8192;
         }

+ 0 - 5
ISCSI/ISCSI.Server/ISCSIServer.Parameters.cs

@@ -37,11 +37,6 @@ namespace ISCSI.Server
         public class DeclaredParameters
         {
             // Connection parameters:
-
-            /// <summary>
-            /// per direction parameter that the target or initator declares.
-            /// maximum data segment length that the target (or initator) can receive in a single iSCSI PDU.
-            /// </summary>
             public static int MaxRecvDataSegmentLength = 262144;
         }
     }