瀏覽代碼

Merge pull request #218 from bonkey/stable

Fixed HttpServerIODelegate to public and class
Damian Kołakowski 9 年之前
父節點
當前提交
73216329c5
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Sources/HttpServerIO.swift

+ 1 - 1
Sources/HttpServerIO.swift

@@ -8,7 +8,7 @@
 import Foundation
 import Dispatch
 
-protocol HttpServerIODelegate {
+public protocol HttpServerIODelegate: class {
     func socketConnectionReceived(_ socket: Socket)
 }