大家可以建立一个Windows Form应用程序,在下面的各个文件中添加对应的源码://RawSocket.csnamespace ReceiveAll{using System;using System.Net;using System.Net.Sockets;using System.Runti...
初始化Socket,这是mfc封装的类调用之前必须进行套接字动态链接库的装载,但是如果你错过了向导中的选项,而是自己手动添加,如果不了解情况,导致程序运行失败。
//Socket功能初始化
if(!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
returnFALSE
BOOLCMyApp:..
分类:
编程语言 时间:
2014-11-26 11:41:11
阅读次数:
1565
# 什么是https > https is "Hyper Text Transfer Protocol" with Secure Sockets Layer (SSL) > HTTPS的主要思想是在不安全的网络上创建一安全信道,并可在使用适当的加密包和服务器证书可被验证且可被信任时,对...
分类:
Web程序 时间:
2014-11-25 00:28:32
阅读次数:
310
1、问题 通过Eclipse启动Tomcat时,抛出异常java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind。此异常的原因是服务器端口被占用 其解决办法包括以下两种: 一:更改服务器的端口...
这篇文章解决了在StackOverflow上一个经常被提到的问题。在配置发生变化(Configuration changs)时,什么是最好的保存活动对象方法,比如运行中的线程,Sockets,AsyncTask。要回答这个问题,我们要先讨论一些开发者在Activity生命周期中使用长时间后台任务时遇...
分类:
其他好文 时间:
2014-11-24 08:37:00
阅读次数:
143
using System;using System.Management;using System.Net;using System.Net.Sockets;using System.Text;using System.Diagnostics;using System.Text.RegularExp...
分类:
其他好文 时间:
2014-11-22 00:34:06
阅读次数:
374
http://stackoverflow.com/questions/12318325/resume-tls-connection-in-javaAs long as you use the same SSLSocketFactory to create the sockets, the JSSE ...
分类:
其他好文 时间:
2014-11-21 18:22:16
阅读次数:
233
-----------这是客户端程序--------------
#include"stdio.h"
#include"winsock2.h"
#include"stdlib.h"
#pragmacomment(lib,"ws2_32")
voidmain()
{
WSADATAwsaData;
WSAStartup(MAKEWORD(2,2),&wsaData);
SOCKETs=socket(PF_INET,SOCK_STREAM,IPPROTO_TCP);
sockaddr_..
分类:
编程语言 时间:
2014-11-19 02:09:17
阅读次数:
341
Mac OS下的IPC方式种类很多,大约有下面几种。
1. Mach API
2. CFMessagePort
3. Distributed Objects (DO) NSDistributedNotificationCenter
4. Apple events
5. UNIX domain sockets
6. Internet sockets 或者 XPC(NSConne...
分类:
系统相关 时间:
2014-11-19 01:36:06
阅读次数:
177
PortIn a manner similar to processes, Ports should be considered. Ports are a datatype that encompasses all kinds of connections and sockets opened to the outside world: TCP sockets, UDP sockets, SCTP...
分类:
其他好文 时间:
2014-11-15 12:56:20
阅读次数:
295