C#收听80端口

时间:2012-05-08 20:34:17

标签: c#

我想要监听端口80.为此,我编写了一个TCP侦听器并赋予它管理员权限。但它不起作用(它失败了)。

这是错误:

An attempt was made to access a socket in a way forbidden by its
access permissions

我的代码:

static void Main(string[] args)
{
    WindowsPrincipal pricipal = new WindowsPrincipal(WindowsIdentity.GetCurrent());
    bool hasAdministrativeRight = pricipal.IsInRole(WindowsBuiltInRole.Administrator);
    if (hasAdministrativeRight == true)
    {
        TcpListener server;
        Int32 port = 80;
        IPAddress localAddr = IPAddress.Parse("127.0.0.1");
        server = new TcpListener(localAddr, port);
        server.Start();
        Byte[] bytes = new Byte[256];
        String data = null;
        while (true)
        {
            Console.Write("Waiting for a connection... ");
            TcpClient client = server.AcceptTcpClient();
            Console.WriteLine("Connected!");
            data = null;
            NetworkStream stream = client.GetStream();
            int i;
            while ((i = stream.Read(bytes, 0, bytes.Length)) != 0)
            {
                data = System.Text.Encoding.ASCII.GetString(bytes, 0, i);
                Console.WriteLine("Received: {0}", data);
                data = data.ToUpper();

                byte[] msg = System.Text.Encoding.ASCII.GetBytes(data);
                stream.Write(msg, 0, msg.Length);
                Console.WriteLine("Sent: {0}", data);
            }

            client.Close();
        }
    }
}

3 个答案:

答案 0 :(得分:2)

我怀疑端口80已被IIS或Skype使用。 您需要关闭它们或更改它们使用的端口。

运行此命令并确定哪个进程(PID)正在使用端口80:

C:\> netstat -ano

Active Connections
  Proto  Local Address          Foreign Address        State           PID
  TCP    0.0.0.0:80             0.0.0.0:0              LISTENING       4

如果PID指向系统进程(在我的情况下为4),那么我认为这就是IIS。

MSDN Socket Error Codes

有关更多详细信息,请在try / catch中包装server.Start()并捕获SocketException并检查SocketException.ErrorCode。

try
{
    server.Start();
}
catch (SocketException exception)
{
    Console.Write(exception.ErrorCode);
}

MSDN TcpListener.Start()

答案 1 :(得分:0)

如果您的计算机上有IIS,则IIS(默认)使用端口80,然后按照此链接https://stackoverflow.com/a/108397/1221319停止IIS侦听端口80.

答案 2 :(得分:0)

据我所知,要通过端口80绑定TCP连接,您需要获得管理员权限。 因此,您必须以管理员身份运行您的程序,并且您使用的HttpListener应该正常运行。 尝试将此添加到您的清单文件中:

<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />