原文:http://www.cnblogs.com/xiezhengcai/p/3956401.html1. 服务端io.on('connection',function(socket));监听客户端连接,回调函数会传递本次连接的socketio.sockets.emit('String',data...
php sockets扩展安装今天安装cacti发现需要php sockets扩展,而现在的lnmp没有安装,于是想到了phpzie工具安装扩展,安装方法如下:cd php-5.3.8/ext/sockets//usr/local/php/bin/phpize./configure --enable...
分类:
Web程序 时间:
2014-09-04 01:33:19
阅读次数:
241
1、问题 通过Eclipse启动Tomcat时,抛出异常java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind。此异常的原因是服务器端口被占用 其解决办法包括以下两种: 一:更改服务器的端口...
首先创建一个服务端程序,这个程序就用VS的控制台程序做即可了。代码例如以下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net.Sockets;names...
分类:
其他好文 时间:
2014-08-30 22:56:50
阅读次数:
241
using System;using System.Collections.Generic;using System.Configuration;using System.Linq;using System.Net;using System.Net.Sockets;using System.Text...
分类:
其他好文 时间:
2014-08-29 17:59:48
阅读次数:
285
本例用WPF程序做服务器端,windows phone程序做客户端。我们使用基于UDP协议的Socket通信。更多关于socket信息请查看:http://msdn.microsoft.com/zh-cn/library/system.net.sockets.socket(v=vs.110).asp...
Action(){char * position;char * str;int offset;char * search_str = "ERROR"; // web_set_sockets_option("INITIAL_BASIC_AUTH","1"); web_set_user("21652.....
分类:
Web程序 时间:
2014-08-28 18:05:25
阅读次数:
247
publicstaticvoidport_check(stringip){booltcpListen=false;booludpListen=false;//设定端口状态标识位stringip_str=ip;System.Net.IPAddressmyIpAddress=IPAddress.Parse(ip_str);System.Net.IPEndPointmyIpEndPoint=newIPEndPoint(myIpAddress,80);try{System.Net.Sockets.T..
分类:
其他好文 时间:
2014-08-26 17:36:16
阅读次数:
595
第一,需要下载PHPMailer文件包phpmailer. http://phpmailer.sourceforge.net/第二,确认你的服务器系统已经支持socket ,通过phpinfo();查看是否支持sockets(socket 是属于PHP扩展部分),如果显现为“enabled”,那就是...
分类:
Web程序 时间:
2014-08-26 13:21:26
阅读次数:
215
fuser 概述fuser命令是用来显示所有正在使用着指定的file, file system 或者 sockets的进程信息。例一:#fuser –m –u /mnt/usb1/mnt/usb1: 1347c(root) 1348c(guido) 1349c(guido)在例子一中,使用了-m和-...
分类:
其他好文 时间:
2014-08-25 16:41:24
阅读次数:
211