有没有适合托管c++使用的socket编程头文件

 我来答
祚胤17
2010-08-25 · TA获得超过786个赞
知道大有可为答主
回答量:1148
采纳率:82%
帮助的人:595万
展开全部
1.简单服务器端
/*
using namespace System::Data;
using namespace System::Net::Sockets;
using namespace System::Net;
using namespace System::Threading;
*/
private static int port = %%2;
private static Thread thThreadRead;
private static TcpListener TcpListen;
private static bool bListener = true;
private static Socket stRead;
private static void Listen()
{
try
{
TcpListen = gcnew TcpListener(port);
TcpListen.Start();
stRead = TcpListen.AcceptSocket();
EndPoint tempRemoteEP = stRead.RemoteEndPoint;
IPEndPoint tempRemoteIP = (IPEndPoint)tempRemoteEP;
IPHostEntry host = Dns.GetHostByAddress(tempRemoteIP.Address);
String^ sHostName = host.HostName;
while (bListener)
{
stRead.Send(Encoding.ASCII.GetBytes("Hello"));
String^ sTime = DateTime.Now.ToShortTimeString();
Byte[] byRead = gcnew Byte[1024];
int iRead = stRead.ReceiveFrom(byRead, ref tempRemoteEP);
Byte[] byText = gcnew Byte[iRead];
Array.Copy(byRead, 0, byText, 0, iRead);
String^ line = System.Text.Encoding.Default.GetString(byRead);
}
}
catch (System.Security.SecurityException)
{
//监听失败
}
}
thThreadRead = gcnew Thread(gcnew ThreadStart(Listen));
thThreadRead.Start();

2.简单客户端
/*
using namespace System::Data;
using namespace System::Net::Sockets;
using namespace System::Net;
*/
private static IPEndPoint dateTimeHost;
String^ hostIPString=%%1;
String^ hostPortString=%%2;
IPAddress hostIP=IPAddress.Parse(hostIPString);
dateTimeHost=gcnew IPEndPoint(hostIP,Int32.Parse(hostPortString));
Socket conn=gcnew Socket(AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp);
conn.Connect(dateTimeHost);
int bytes=0;
Byte[] RecvBytes=gcnew Byte[256];
bytes=conn.Receive(RecvBytes,RecvBytes.Length,0);
String^ RecvString=Encoding.ASCII.GetString(RecvBytes,0,bytes);
Console.WriteLine(RecvString);
conn.Shutdown(SocketShutdown.Both);
conn.Close();

3.获得本机IP
//using namespace System::Net;
IPAddress[] addressList = Dns.GetHostByName(Dns.GetHostName()).AddressList;
String^ %%1=nullptr;
for (int i = 0; i < addressList.Length; i++)
{
%%1 += addressList[i].ToString();
}
百度网友8adc2ac
2010-08-25 · TA获得超过1388个赞
知道小有建树答主
回答量:375
采纳率:0%
帮助的人:544万
展开全部
托管C++不需要头文件,引用托管库就行了
using System::Net;
这样子
不者亩过socket在哪个库顷好里面我就不雀嫌铅记得了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式