Skip to content

Commit db9177e

Browse files
committed
Add Secure Transport, Improve HTTP response handling
Allow Secure transport protocol to be set on TCP/HTTP Clients HTTP Response Handling Improved Cosmetic Tidy Up
1 parent db137a3 commit db9177e

File tree

23 files changed

+647
-617
lines changed

23 files changed

+647
-617
lines changed

HTTPPerfHarness/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*
2+
**
3+
!.gitignore
4+
bin

HTTPPerfHarness/src/com/ibm/uk/hursley/perfharness/http/HTTPProvider.properties

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ nm.desc = Number of messages to send for each thread
7171
nm.type = java.lang.Integer
7272
nm.xtra = If this value is >0 then each client thread will send this number of msgs\n\
7373
74-
rb.dflt = 10000
74+
rb.dflt = 16384
7575
rb.desc = Size of the receive buffer in bytes in which the HTTP Reply message is read. This MUST be big enough for the reply message.
7676
rb.type = java.lang.Integer
7777

@@ -95,9 +95,13 @@ px.desc = Send absoluteURI in HTTP header request URI, required when requests se
9595
px.type = java.lang.Boolean
9696

9797
se.dflt = false
98-
se.desc = Use SSL
98+
se.desc = Use secure transport
9999
se.type = java.lang.Boolean
100100

101+
ps.dflt =
102+
ps.desc = Comma-separated list of security protocols to be enabled on the socket
103+
ps.type = java.lang.String
104+
101105
pa.dflt = 0
102106
pa.desc = Pattern for sending multiple different messages: 0=cycle (default), 1=prime, 2=thread
103107
pa.type = java.lang.Integer
@@ -115,8 +119,6 @@ es.dflt = 1000
115119
es.desc = Period to sleep for between connection retries when errors allowed (ms)
116120
es.type = java.lang.Integer
117121

118-
119-
120122
au.dflt =
121123
au.desc = Specify username and password for HTTP basic auth in the form <username>:<password>
122124
au.type = java.lang.String

0 commit comments

Comments
 (0)