码迷,mamicode.com
首页 >  
搜索关键字:sockets    ( 778个结果
C# Socket 入门3 UPD(转)
今天来写一个UPD1.服务端:usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Net.Sockets;usingSystem.Net;namespaceConsoleApplication1{class...
分类:Windows程序   时间:2014-10-30 20:43:27    阅读次数:313
C# Socket 入门2(转)
现在来传一个图片看看, 改改程序, 看看服务端图片为 140K, 1.jgp1. 服务端1usingSystem;2usingSystem.Collections.Generic;3usingSystem.Text;4usingSystem.Net.Sockets;5usingSystem.Net;...
分类:Windows程序   时间:2014-10-30 20:38:33    阅读次数:254
一个封装不错的 TcpClient 类
using System;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading;namespace RDavey.Net{ public class AsyncTcpClient ...
分类:其他好文   时间:2014-10-30 19:05:43    阅读次数:400
iOS 网络编程模式总结
IOS 可以采用三类api 接口进行网络编程,根据抽象层次从低到高分别为socket方式、stream方式、url 方式。一 、socket 方式IOS 提供的socket 方式的网络编程接口为CFSocket,CFSocket是BSD sockets的抽象和封装,CFSocket提供BSD sockets几乎所有的功能,并集成socket进run loop,用来实现多线程网络编程和网络事件监听。...
分类:移动开发   时间:2014-10-27 19:35:12    阅读次数:343
[转]提高 Linux 上 socket 性能,加速网络应用程序的 4 种方法
原文链接:http://www.ibm.com/developerworks/cn/linux/l-hisock.html使用 Sockets API,我们可以开发客户机和服务器应用程序,它们可以在本地网络上进行通信,也可以通过 Internet 在全球范围内进行通信。与其他 API 一样,您可以通...
分类:系统相关   时间:2014-10-24 14:27:44    阅读次数:286
debian下安装lua开发环境
sudo apt-get install luarockssudo apt-get install lua-socket;sudo apt-get install lua-filesystem;lfs和sockets用来调试,luarocks用来安装别的模块的开发环境,intellij idea的社...
分类:其他好文   时间:2014-10-24 12:29:48    阅读次数:1595
SmtpServerHelper
using System;using System.Text;using System.IO;using System.Net.Sockets;using System.Collections;public enum MailFormat { Text, HTML };public enum Mai...
分类:其他好文   时间:2014-10-22 17:35:26    阅读次数:218
FTPClient
using System;using System.Net;using System.IO;using System.Text;using System.Net.Sockets;using System.Threading;public class FTPClient{ public static ...
分类:其他好文   时间:2014-10-22 17:26:17    阅读次数:148
linux下getsockopt和setsockopt具体解释及測试
linux下getsockopt和setsockopt具体解释及測试NAME名字 getsockopt, setsockopt - get and set options on sockets 获取或者设置套接字的选项SYNOPSIS函数原型 #include /* ...
分类:系统相关   时间:2014-10-22 12:17:30    阅读次数:380
Tcp客户端的代码
1 using System; 2 using System.Windows.Forms; 3 //添加的命名空间引用 4 using System.Net; 5 using System.Net.Sockets; 6 using System.Threading; 7 using ...
分类:其他好文   时间:2014-10-22 06:14:34    阅读次数:273
778条   上一页 1 ... 68 69 70 71 72 ... 78 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!