Skip to content

Commit

Permalink
Add basic proxy support
Browse files Browse the repository at this point in the history
Support proxy configuration for proxies that support HTTP tunnel feature.
Only basic authentication is implemented.

SSL handover after CONNECT TCP tunneling, by making sure all
incoming data from proxy is read before moving forward.

Maximum proxy responses are limited to 10MiB. Go over this and the code will ignore anything proxy has to say.
  • Loading branch information
Jari Vetoniemi committed Nov 28, 2016
1 parent ea0f33f commit c0a47c1
Show file tree
Hide file tree
Showing 2 changed files with 389 additions and 41 deletions.
10 changes: 10 additions & 0 deletions JFRWebSocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,16 @@
*/
@property(nonatomic, assign)BOOL selfSignedSSL;

/**
SSL security level for connection.
See the kCFStreamSocketSecurityLevel constants for accepted values.
If left nil (unset) kCFStreamSo cketSecurityLevelNegotiatedSSL is used.
NOTE: On iOS7 (and 8?) kCFStreamSocketSecurityLevelNegotiatedSSL will fail for servers that negotiate SSL level lower than TLSv1
Thus it's wise to set this to kCFStreamSocketSecurityLevelTLSv1 in most cases.
*/
@property(nonatomic, strong)NSString *securityLevel;

/**
Use for SSL pinning.
*/
Expand Down
Loading

0 comments on commit c0a47c1

Please sign in to comment.