UDP发送组播消息

此生再无相见时 提交于 2020-01-31 10:52:10
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.Sockets;

namespace Asr.App.O2o.Client.UdpMulticast
{
    public class UdpMulticast
    {
        private static IPAddress mcastAddress;
        private static int mcastPort;
        private static Socket mcastSocket;
        private static MulticastOption mcastOption;

        public static void Start()
        {
            //组播地址和端口
            mcastAddress = IPAddress.Parse("224.0.0.1");
            mcastPort = 6005;
            //组播套接字,绑定本地地址(组播端口)
            mcastSocket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
            IPEndPoint localEP = new IPEndPoint(IPAddress.Parse("127.0.0.1"), mcastPort);
            mcastSocket.Bind(localEP);
            //加入组播
            mcastOption = new MulticastOption(mcastAddress, IPAddress.Parse("127.0.0.1"));
            mcastSocket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, mcastOption);
        }

        public static void Stop()
        {
            mcastSocket.Close();
            mcastSocket.Dispose();
        }

        public static void sendMsg(int msgType, int seqInt, string jsonValue)
        {
            byte[] typebytes = BitConverter.GetBytes(msgType);
            byte[] seqbytes = BitConverter.GetBytes(seqInt);
            byte[] msgbytes = Encoding.UTF8.GetBytes(jsonValue);
            byte[] lenbytes = BitConverter.GetBytes(msgbytes.Length);

            byte[] bytes = typebytes.Concat(seqbytes).Concat(lenbytes).Concat(msgbytes).ToArray();
            mcastSocket.SendTo(bytes, new IPEndPoint(mcastAddress, mcastPort));
        }
    }
}

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!