• 大小: 0.03M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: tcp  C#  服务器  服务  

资源简介


资源截图

代码片段和文件信息

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

namespace TCP
{
    class Program
    {
        static void Main(string[] args)
        {
            Socket sw = new Socket(AddressFamily.InterNetwork SocketType.Stream ProtocolType.Tcp);//获取IP地址
            IPAddress ip = IPAddress.Parse(“127.0.0.1“);//创建端口号
            IPEndPoint point = new IPEndPoint(ip 666);//绑定IP地址和端口号
            sw.Bind(point);
            sw.Listen(10);//最大连接数
            while (true) {
                byte[] buff = new byte[50];
                Socket ss = sw.Accept();//接受连接
                Console.WriteLine(“新连接“);
                while (true) {
                    Console.Wri

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

    ..A..H.     43520  2018-06-25 11:34  TCP服务器\.vs\TCP\v14\.suo

     文件        189  2018-06-25 10:41  TCP服务器\TCP\App.config

     文件       5632  2018-06-25 10:56  TCP服务器\TCP\bin\Debug\TCP.exe

     文件        189  2018-06-25 10:41  TCP服务器\TCP\bin\Debug\TCP.exe.config

     文件      11776  2018-06-25 10:56  TCP服务器\TCP\bin\Debug\TCP.pdb

     文件      22696  2018-06-25 11:36  TCP服务器\TCP\bin\Debug\TCP.vshost.exe

     文件        189  2018-06-25 10:41  TCP服务器\TCP\bin\Debug\TCP.vshost.exe.config

     文件        490  2010-03-17 22:39  TCP服务器\TCP\bin\Debug\TCP.vshost.exe.manifest

     文件       6707  2018-06-25 11:31  TCP服务器\TCP\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        807  2018-06-25 11:36  TCP服务器\TCP\obj\Debug\TCP.csproj.FileListAbsolute.txt

     文件       1922  2018-06-25 10:54  TCP服务器\TCP\obj\Debug\TCP.csprojResolveAssemblyReference.cache

     文件       5632  2018-06-25 10:56  TCP服务器\TCP\obj\Debug\TCP.exe

     文件      11776  2018-06-25 10:56  TCP服务器\TCP\obj\Debug\TCP.pdb

     文件          0  2018-06-25 10:41  TCP服务器\TCP\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs

     文件          0  2018-06-25 10:41  TCP服务器\TCP\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs

     文件          0  2018-06-25 10:41  TCP服务器\TCP\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs

     文件       1584  2018-06-25 11:34  TCP服务器\TCP\Program.cs

     文件       1314  2018-06-25 10:41  TCP服务器\TCP\Properties\AssemblyInfo.cs

     文件       2666  2018-06-25 10:41  TCP服务器\TCP\TCP.csproj

     文件        976  2018-06-25 10:41  TCP服务器\TCP.sln

     目录          0  2018-06-25 10:41  TCP服务器\TCP\obj\Debug\TempPE

     目录          0  2018-06-25 11:50  TCP服务器\.vs\TCP\v14

     目录          0  2018-06-25 11:50  TCP服务器\TCP\bin\Debug

     目录          0  2018-06-25 11:50  TCP服务器\TCP\obj\Debug

     目录          0  2018-06-25 11:50  TCP服务器\.vs\TCP

     目录          0  2018-06-25 11:50  TCP服务器\TCP\bin

     目录          0  2018-06-25 11:50  TCP服务器\TCP\obj

     目录          0  2018-06-25 11:50  TCP服务器\TCP\Properties

    ...D.H.         0  2018-06-25 11:50  TCP服务器\.vs

     目录          0  2018-06-25 11:50  TCP服务器\TCP

............此处省略4个文件信息

评论

共有 条评论