W
wuling
Unregistered / Unconfirmed
GUEST, unregistred user!
代码如下
public void Accept()
{
Console.WriteLine("等待客户连接");
Socket s=l.AcceptSocket();
String strIP=((IPEndPoint)s.RemoteEndPoint).Address.ToString();
Console.WriteLine(strIP+ "已连接");
Byte[] rb=new Byte[256];
string str;
while(s.Connected)
{
Int32 bytes=s.Receive(rb,rb.Length,0);
str=ASCII.GetString(rb,0,bytes);
if (str=="list")
{
。。。。。
} else
if (str.IndexOf("get")>0)
{
。。。。。。。
}
}
Console.WriteLine(strIP+"已断开");
}
以上是在一个线程中
public void Accept()
{
Console.WriteLine("等待客户连接");
Socket s=l.AcceptSocket();
String strIP=((IPEndPoint)s.RemoteEndPoint).Address.ToString();
Console.WriteLine(strIP+ "已连接");
Byte[] rb=new Byte[256];
string str;
while(s.Connected)
{
Int32 bytes=s.Receive(rb,rb.Length,0);
str=ASCII.GetString(rb,0,bytes);
if (str=="list")
{
。。。。。
} else
if (str.IndexOf("get")>0)
{
。。。。。。。
}
}
Console.WriteLine(strIP+"已断开");
}
以上是在一个线程中