PageRenderTime 55ms CodeModel.GetById 32ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/stable-1.1.2/Server/FastCgi/Protocol.cs

#
C# | 19 lines | 8 code | 3 blank | 8 comment | 0 complexity | 62fdbc7cafa0830cde45e0f6d21918f0 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. //-----------------------------------------------------------------------
  2. // <copyright>
  3. // Copyright (C) Ruslan Yakushev for the PHP Manager for IIS project.
  4. //
  5. // This file is subject to the terms and conditions of the Microsoft Public License (MS-PL).
  6. // See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL for more details.
  7. // </copyright>
  8. //-----------------------------------------------------------------------
  9. namespace Web.Management.PHP.FastCgi
  10. {
  11. internal enum Protocol
  12. {
  13. NamedPipe = 0,
  14. Tcp = 1
  15. }
  16. }