• 大小: 1.09KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: Socket  C#  c  源码  UDP  

资源简介

C#Socket UDP 通信源码

资源截图

代码片段和文件信息

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

namespace AUDSTest
{
    public class Program
    {
        
        static void Main(string[] args)
        {
            int recv;
            byte[] data = new byte[1024];
            uint IOC_IN = 0x80000000;
            uint IOC_VENDOR = 0x18000000;
            uint SIO_UDP_CONNRESET = IOC_IN | IOC_VENDOR | 12;
            byte[] optionInValue = new byte[] { Convert.ToByte(false) };
            byte[] optionOutValue = new byte[4];


            //得到本机IP,设置TCP端口号         
            IPEndPoint ip = new IPEndPoint(IPAddress.Parse(“127.0.0.1“) 6789);
            IPEndPoint mubiaoip = new IPEndPoint(IPAddress.Parse(“127.0.0.1“) 2021

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3172  2017-06-23 14:13  Program.cs

----------- ---------  ---------- -----  ----

                 3172                    1


评论

共有 条评论