CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: globalarchitect

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    9,697

    Re: Can't Listen to Port 80

    As it turns out, it was the byte[] IN array that was thei ssue - here is the correct code:


    mainSocket = new Socket(AddressFamily.InterNetwork,
    SocketType.Raw,...
  2. Replies
    4
    Views
    9,697

    Re: Can't Listen to Port 80

    Thank you for your code sample - I am testing it out now. When I get to the following line:

    int ret_code = socket.IOControl(IOControlCode.ReceiveAll, IN, OUT);

    I get an invalid argument...
  3. Replies
    4
    Views
    9,697

    Can't Listen to Port 80

    I am attempting to create a socket listener in a Windows application using a System.Net.Sockets.Socket but I could not bind to port 80 on my Windows 7 machine, I could bind to any other port without...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured