3

可能重复:
如何在 C# 中创建一个简单的代理?

我正在编写一个代理应用程序,我想处理所有网络连接。我已经编写了服务器和客户端应用程序,所以现在我只需要将网络连接重定向到它。

我搜索了很多,这就是我发现的:

//For sniffing the socket to capture the packets has to be a raw socket, with the
//address family being of type internetwork, and protocol being IP
mainSocket = new Socket(AddressFamily.InterNetwork, SocketType.Raw, ProtocolType.IP);

//Bind the socket to the selected IP address
mainSocket.Bind(new IPEndPoint(IPAddress.Parse(cmbInterfaces.Text), 0));

//Set the socket  options
mainSocket.SetSocketOption(SocketOptionLevel.IP,    //Applies only to IP packets
SocketOptionName.HeaderIncluded,                    //Set the include the header
true);                                              //option to true

byte[] byTrue = new byte[4] {1, 0, 0, 0};
byte[] byOut = new byte[4]{1, 0, 0, 0}; //Capture outgoing packets

我不确定这是否对我有帮助,因为我无法取消原始请求。最简单的方法是什么?

4

1 回答 1

0

您能够透明地拦截所有网络流量的唯一方法是使用驱动程序,由于显而易见的原因,您将无法在 c# 中执行此操作。也就是说,可以使用winpcap作为内核模式组件并在 c# 中执行应用程序逻辑。已经编写了一些与 winpcap 一起使用的互操作代码,尽管我没有使用它,所以不能说支持有多稳定和/或完整。

于 2012-10-05T19:35:43.167 回答