Skip to content

Commit

Permalink
Merge pull request #266 from fjcaetano/master
Browse files Browse the repository at this point in the history
'Open'ing classes
  • Loading branch information
daltoniam authored Oct 12, 2016
2 parents 7476f51 + 8e1de1d commit 931e3ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Source/SSLSecurity.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import Foundation
import Security

public class SSLCert {
open class SSLCert {
var certData: Data?
var key: SecKey?

Expand All @@ -50,7 +50,7 @@ public class SSLCert {
}
}

public class SSLSecurity {
open class SSLSecurity {
public var validatedDN = true //should the domain name be validated?

var isReady = false //is the key processing done?
Expand Down
2 changes: 1 addition & 1 deletion Source/WebSocket.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public protocol WebSocketPongDelegate: class {
func websocketDidReceivePong(socket: WebSocket, data: Data?)
}

public class WebSocket : NSObject, StreamDelegate {
open class WebSocket : NSObject, StreamDelegate {

enum OpCode : UInt8 {
case continueFrame = 0x0
Expand Down

0 comments on commit 931e3ba

Please sign in to comment.