套接字通信错误

时间:2011-07-28 10:51:32

标签: c# visual-studio sockets connection port

我正在使用C#进行套接字通信的小程序。这是我的代码: 客户(数据发送方):

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.Sockets;

namespace Client
{
class Program
{
    static Socket sck; //vytvor socket
    static void Main(string[] args)
    {
        sck = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
        IPEndPoint localEndPoint = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 1234); //nastav premennú loacalEndPoint na lokálnu ip a port 1234
        try  //Skús sa
        {
            sck.Connect(localEndPoint); // pripojiť

        }
        catch { //ak sa to nepodarí
            Console.Write("Unable to connect to remote ip end point \r\n"); //vypíš chybovú hlášku
            Main(args);
        }

        Console.Write("Enter text: ");
        string text = Console.ReadLine();
        byte[] data = Encoding.ASCII.GetBytes(text);
        sck.Send(data);
        Console.Write("Data sent!\r\n");
        Console.Write("Press any key to continue...");
        Console.Read();
        sck.Close();
    }
}
}

服务器(数据收发器):

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.Sockets;


namespace Server
{
class Program
{
    static byte[] Buffer { get; set; } //vytvor Buffer
    static Socket sck;

    static void Main(string[] args)
    {
        sck = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); //vytvor Socket
        sck.Bind(new IPEndPoint(0, 1234));
        sck.Listen(80);
        Socket accepted = sck.Accept();
        Buffer = new byte[accepted.SendBufferSize];
        int bytesRead = accepted.Receive(Buffer);
        byte[] formatted = new byte[bytesRead]; //vytvor novú Array a jej dĺžka bude dĺžka priatých infomácii
        for(int i=0; i<bytesRead;i++){
            formatted[i] = Buffer[i]; //načítaj z Buffer do formatted všetky priate Bajty

        }
        string strData = Encoding.ASCII.GetString(formatted); //z ASCII hodnôt urob reťazec
        Console.Write(strData + "\r\n"); //vypíš data
        sck.Close(); //ukonči spojenie


    }
}

} 我的问题是:在客户端程序中,我将端口1234上的数据发送到本地IP。但我无法连接。我已尝试端口80,它已连接。那么,请问,我的问题在哪里?我如何连接到每个端口?请忽略代码中的注释,请帮助我。

2 个答案:

答案 0 :(得分:1)

您正在侦听端口80,即客户端程序应连接到的端口。 “1234”是服务器绑定的LOCAL端口。没有什么东西在听那个港口。

答案 1 :(得分:1)

服务器监听哪个ip?你用netstat -an检查了吗?找到“LISTEN”|找到“1234”? (注意:用你的语言代表替换听......)。

0可能不是127.0.0.1但是第一个分配给第一个NIC的IP地址...(虽然0应该监听所有接口......但是唉......

我总是在客户端和服务器中都使用IP地址

HTH

马里奥