博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c#的udp通讯代码
阅读量:6839 次
发布时间:2019-06-26

本文共 2045 字,大约阅读时间需要 6 分钟。

//Author:smilelance

//From:

using UnityEngine;

using System.Collections;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System;
public class UdpConnection {
private static UdpConnection instance;
private const System.Int32 serverPort = 8320;
private const string serverAddress = "10.1.13.157";
UdpClient udpClient;
    private UdpConnection()
{
    
    }
    public static UdpConnection GetInstance()
    {
      if(instance==null){
        instance=new UdpConnection();
        }
        return instance;
    }
public void startUdpConnection(){
udpClient = new UdpClient();
        udpClient.Connect(serverAddress, serverPort);
//IPEndPoint object will allow us to read datagrams sent from any source.
        IPEndPoint RemoteIpEndPoint = new IPEndPoint(IPAddress.Any, 0);
         // Sends a message to the host to which you have connected.
         byte[] sendBytes = Encoding.UTF8.GetBytes("Client start online?");
// AsyncSend(sendBytes);
         //udpClient.Send(sendBytes, sendBytes.Length);
 
AsyncReceive();
}
// 发送数据 
public void AsyncSend(byte[] data){
        if (data.Length > 0){
// Debug.Log("sending : " + Encoding.UTF8.GetString(data));
           //udpClient.Send(data, data.Length, ipep);
udpClient.BeginSend(data, data.Length, new AsyncCallback(SendDataCallback), null);
}
}
//接收数据
public void AsyncReceive(){
        udpClient.BeginReceive(new AsyncCallback(ReceiveDataCallback), null);
}
//发送数据callback
public static bool messageSent = false;
private void SendDataCallback(IAsyncResult ar)
{
  //UdpClient u = (UdpClient)ar.AsyncState;
//print(u.EndSend(ar));
//u.EndSend(ar);
// Debug.Log("sending successfule");
  messageSent = true;
}
    //接收数据callback
    private void ReceiveDataCallback(IAsyncResult ar)
    {
        IPEndPoint ipep = (IPEndPoint)ar.AsyncState;
        byte[] data = udpClient.EndReceive(ar, ref ipep);
        if (data.Length != 0){
//            OnReceiveData(new UdpSimpleEventArgs(ipep, data));
// string returnData = Encoding.UTF8.GetString(data);
// Debug.Log("recv data: " + returnData);
MessageReceiver.GetInstance().parseReseiveMsg(data);
}
        //继续从远程主机接收数据报
        AsyncReceive();
    }
}

转载于:https://www.cnblogs.com/secbook/archive/2012/08/10/2655373.html

你可能感兴趣的文章
同一个页面,两次请求保证查询条件不变(题目不太相符,我比较渣,问题都不知道怎么表述!--)...
查看>>
freemarker的${!}
查看>>
一个简单的synchronized多线程问题、梳理与思考
查看>>
使用Web.Config Transformation配置灵活的配置文件
查看>>
python PILLOW
查看>>
界面间传值
查看>>
iOS强制屏幕旋转
查看>>
js:如何在循环异步请求的每次返回中添加想要的值
查看>>
POJ-1258 Agri-Net(kruskal最小生成树)
查看>>
BZOJ-1644: [Usaco2007 Oct]Obstacle Course 障碍训练课(SPFA)
查看>>
LaTeX 简介与安装
查看>>
(28)SpringBoot启动时的Banner设置【从零开始学Spring Boot】
查看>>
内核配置中 ramdisk 大小修改
查看>>
socket通信时如何判断当前连接是否断开--select函数,心跳线程,QsocketNotifier监控socket...
查看>>
Beta 冲刺(4/7)
查看>>
BeautfuiSoup4解析器
查看>>
新的开始,连菜鸟都算不上的程序媛
查看>>
使PropertyGrid控件的属性值可以显示多行的方法
查看>>
beta版本冲刺四
查看>>
Lua date format
查看>>