Browse Source

update namespace

tags/2.3
clowwindy 10 years ago
parent
commit
04a4427cff
19 changed files with 31 additions and 31 deletions
  1. +1
    -1
      shadowsocks-csharp/Controller/FileManager.cs
  2. +3
    -3
      shadowsocks-csharp/Controller/Local.cs
  3. +2
    -2
      shadowsocks-csharp/Controller/PACServer.cs
  4. +3
    -3
      shadowsocks-csharp/Controller/PolipoRunner.cs
  5. +2
    -2
      shadowsocks-csharp/Controller/ShadowsocksController.cs
  6. +1
    -1
      shadowsocks-csharp/Controller/SystemProxy.cs
  7. +1
    -1
      shadowsocks-csharp/Encrypt/EncryptorBase.cs
  8. +1
    -1
      shadowsocks-csharp/Encrypt/EncryptorFactory.cs
  9. +1
    -1
      shadowsocks-csharp/Encrypt/IEncryptor.cs
  10. +1
    -1
      shadowsocks-csharp/Encrypt/PolarSSL.cs
  11. +1
    -1
      shadowsocks-csharp/Encrypt/PolarSSLEncryptor.cs
  12. +1
    -1
      shadowsocks-csharp/Encrypt/TableEncryptor.cs
  13. +1
    -1
      shadowsocks-csharp/Model/Configuration.cs
  14. +1
    -1
      shadowsocks-csharp/Model/Server.cs
  15. +4
    -4
      shadowsocks-csharp/Program.cs
  16. +2
    -2
      shadowsocks-csharp/Properties/Resources.Designer.cs
  17. +1
    -1
      shadowsocks-csharp/Properties/Settings.Designer.cs
  18. +1
    -1
      shadowsocks-csharp/View/ConfigForm.Designer.cs
  19. +3
    -3
      shadowsocks-csharp/View/ConfigForm.cs

+ 1
- 1
shadowsocks-csharp/Controller/FileManager.cs View File

@@ -4,7 +4,7 @@ using System.IO;
using System.IO.Compression;
using System.Text;
namespace shadowsocks.Controller
namespace Shadowsocks.Controller
{
public class FileManager
{


+ 3
- 3
shadowsocks-csharp/Controller/Local.cs View File

@@ -3,10 +3,10 @@ using System.Collections.Generic;
using System.Text;
using System.Net.Sockets;
using System.Net;
using shadowsocks.Encrypt;
using shadowsocks.Model;
using Shadowsocks.Encrypt;
using Shadowsocks.Model;
namespace shadowsocks.Controller
namespace Shadowsocks.Controller
{
class Local


+ 2
- 2
shadowsocks-csharp/Controller/PACServer.cs View File

@@ -1,4 +1,4 @@
using shadowsocks.Properties;
using Shadowsocks.Properties;
using System;
using System.Collections.Generic;
using System.Diagnostics;
@@ -8,7 +8,7 @@ using System.Net;
using System.Net.Sockets;
using System.Text;
namespace shadowsocks.Controller
namespace Shadowsocks.Controller
{
class PACServer
{


+ 3
- 3
shadowsocks-csharp/Controller/PolipoRunner.cs View File

@@ -1,5 +1,5 @@
using shadowsocks.Model;
using shadowsocks.Properties;
using Shadowsocks.Model;
using Shadowsocks.Properties;
using System;
using System.Collections.Generic;
using System.Diagnostics;
@@ -7,7 +7,7 @@ using System.IO;
using System.IO.Compression;
using System.Text;
namespace shadowsocks.Controller
namespace Shadowsocks.Controller
{
class PolipoRunner
{


+ 2
- 2
shadowsocks-csharp/Controller/ShadowsocksController.cs View File

@@ -1,9 +1,9 @@
using shadowsocks.Model;
using Shadowsocks.Model;
using System;
using System.Collections.Generic;
using System.Text;
namespace shadowsocks.Controller
namespace Shadowsocks.Controller
{
public class ShadowsocksController
{


+ 1
- 1
shadowsocks-csharp/Controller/SystemProxy.cs View File

@@ -4,7 +4,7 @@ using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace shadowsocks.Controller
namespace Shadowsocks.Controller
{
public class SystemProxy
{


+ 1
- 1
shadowsocks-csharp/Encrypt/EncryptorBase.cs View File

@@ -1,7 +1,7 @@
using System.Security.Cryptography;
using System.Text;
namespace shadowsocks.Encrypt
namespace Shadowsocks.Encrypt
{
public abstract class EncryptorBase
: IEncryptor


+ 1
- 1
shadowsocks-csharp/Encrypt/EncryptorFactory.cs View File

@@ -1,5 +1,5 @@

namespace shadowsocks.Encrypt
namespace Shadowsocks.Encrypt
{
public static class EncryptorFactory
{


+ 1
- 1
shadowsocks-csharp/Encrypt/IEncryptor.cs View File

@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace shadowsocks.Encrypt
namespace Shadowsocks.Encrypt
{
public interface IEncryptor : IDisposable
{


+ 1
- 1
shadowsocks-csharp/Encrypt/PolarSSL.cs View File

@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace shadowsocks.Encrypt
namespace Shadowsocks.Encrypt
{
public class PolarSSL
{


+ 1
- 1
shadowsocks-csharp/Encrypt/PolarSSLEncryptor.cs View File

@@ -4,7 +4,7 @@ using System.Runtime.InteropServices;
using System.Security.Cryptography;
using System.Text;
namespace shadowsocks.Encrypt
namespace Shadowsocks.Encrypt
{
public class PolarSSLEncryptor
: EncryptorBase, IDisposable


+ 1
- 1
shadowsocks-csharp/Encrypt/TableEncryptor.cs View File

@@ -1,6 +1,6 @@
using System;
namespace shadowsocks.Encrypt
namespace Shadowsocks.Encrypt
{
public class TableEncryptor
: EncryptorBase


+ 1
- 1
shadowsocks-csharp/Model/Configuration.cs View File

@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.IO;
using System.Text;
namespace shadowsocks.Model
namespace Shadowsocks.Model
{
[Serializable]
public class Configuration


+ 1
- 1
shadowsocks-csharp/Model/Server.cs View File

@@ -5,7 +5,7 @@ using System.IO;
using System.Diagnostics;
using SimpleJson;
namespace shadowsocks.Model
namespace Shadowsocks.Model
{
[Serializable]
public class Server


+ 4
- 4
shadowsocks-csharp/Program.cs View File

@@ -1,13 +1,13 @@
using shadowsocks.Controller;
using shadowsocks.Properties;
using shadowsocks.View;
using Shadowsocks.Controller;
using Shadowsocks.Properties;
using Shadowsocks.View;
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace shadowsocks
namespace Shadowsocks
{
static class Program
{


+ 2
- 2
shadowsocks-csharp/Properties/Resources.Designer.cs View File

@@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace shadowsocks.Properties {
namespace Shadowsocks.Properties {
using System;
@@ -39,7 +39,7 @@ namespace shadowsocks.Properties {
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("shadowsocks.Properties.Resources", typeof(Resources).Assembly);
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Shadowsocks.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;


+ 1
- 1
shadowsocks-csharp/Properties/Settings.Designer.cs View File

@@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace shadowsocks.Properties {
namespace Shadowsocks.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]


+ 1
- 1
shadowsocks-csharp/View/ConfigForm.Designer.cs View File

@@ -1,4 +1,4 @@
namespace shadowsocks.View
namespace Shadowsocks.View
{
partial class ConfigForm
{


+ 3
- 3
shadowsocks-csharp/View/ConfigForm.cs View File

@@ -5,10 +5,10 @@ using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using shadowsocks.Controller;
using shadowsocks.Model;
using Shadowsocks.Controller;
using Shadowsocks.Model;
namespace shadowsocks.View
namespace Shadowsocks.View
{
public partial class ConfigForm : Form
{


Loading…
Cancel
Save