Const.swift 417 B

12345678910111213141516171819202122
  1. //
  2. // Const.swift
  3. // Swifter
  4. //
  5. // Created by Damian Kolakowski on 17/12/15.
  6. // Copyright © 2015 Damian Kołakowski. All rights reserved.
  7. //
  8. import Foundation
  9. #if os(Linux)
  10. import Glibc
  11. import NSLinux
  12. #endif
  13. struct Constants {
  14. static let VERSION = "1.0.5"
  15. static let DEFAULT_PORT = in_port_t(8080)
  16. static let CR = UInt8(13)
  17. static let NL = UInt8(10)
  18. }