Skip to content

Commit

Permalink
Merge pull request #10 from vapor/feature/copenssl-rename
Browse files Browse the repository at this point in the history
Switched to Perfect's rename of OpenSSL
  • Loading branch information
loganwright authored Aug 22, 2016
2 parents 1f74d37 + cb6cef8 commit 41d9004
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import PackageDescription
let package = Package(
name: "TLS",
dependencies: [
.Package(url: "https://github.com/PerfectlySoft/Perfect-OpenSSL.git", majorVersion: 0, minor: 6),
.Package(url: "https://github.com/PerfectlySoft/Perfect-COpenSSL.git", majorVersion: 0, minor: 7),
]
)
2 changes: 1 addition & 1 deletion Sources/TLS/Context.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import OpenSSL
import COpenSSL
import Foundation

/**
Expand Down
2 changes: 1 addition & 1 deletion Sources/TLS/Error.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import OpenSSL
import COpenSSL

public enum TLSError: Error {
case methodCreation
Expand Down
2 changes: 1 addition & 1 deletion Sources/TLS/Method.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import OpenSSL
import COpenSSL

/**
An SSL method of communication based on the Client or Server mode.
Expand Down
2 changes: 1 addition & 1 deletion Sources/TLS/Socket.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import OpenSSL
import COpenSSL

/**
An SSL Socket.
Expand Down

0 comments on commit 41d9004

Please sign in to comment.