资源简介
c++实现的Socket客户端建立程序,WSADATA wsd;
if(WSAStartup(MAKEWORD(2,2),&wsd))
{
MessageBox("WSAStartup_error",NULL,0);
}
int ini=0;
SOCKET s;
s=socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (INVALID_SOCKET==s)
{
ini=WSAGetLastError();
MessageBox("ini_socket_error",NULL,0);
}
if(WSAStartup(MAKEWORD(2,2),&wsd))
{
MessageBox("WSAStartup_error",NULL,0);
}
int ini=0;
SOCKET s;
s=socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (INVALID_SOCKET==s)
{
ini=WSAGetLastError();
MessageBox("ini_socket_error",NULL,0);
}
代码片段和文件信息
// socket_ser.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “socket_ser.h“
#include “socket_serDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSocket_serApp
BEGIN_MESSAGE_MAP(CSocket_serApp CWinApp)
//{{AFX_MSG_MAP(CSocket_serApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSocket_serApp construction
CSocket_serApp::CSocket_serApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CSocket_serApp object
CSocket_serApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CSocket_serApp initialization
BOOL CSocket_serApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CSocket_serDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3651 2008-09-08 14:12 socket_ser\ReadMe.txt
文件 1078 2008-09-08 14:12 socket_ser\res\socket_ser.ico
文件 402 2008-09-08 14:12 socket_ser\res\socket_ser.rc2
..A.SH. 3072 2008-09-12 11:30 socket_ser\res\Thumbs.db
文件 780 2008-09-13 18:01 socket_ser\resource.h
文件 35644 2008-09-13 18:01 socket_ser\socket_ser.aps
文件 1245 2008-09-13 18:10 socket_ser\socket_ser.clw
文件 2119 2008-09-08 14:12 socket_ser\socket_ser.cpp
文件 4339 2008-09-12 21:10 socket_ser\socket_ser.dsp
文件 543 2008-09-08 14:12 socket_ser\socket_ser.dsw
文件 1368 2008-09-08 14:12 socket_ser\socket_ser.h
文件 50176 2008-09-13 18:10 socket_ser\socket_ser.ncb
文件 54784 2008-09-13 18:10 socket_ser\socket_ser.opt
文件 934 2008-09-13 18:10 socket_ser\socket_ser.plg
文件 5500 2008-09-13 18:01 socket_ser\socket_ser.rc
文件 6341 2008-09-13 18:10 socket_ser\socket_serDlg.cpp
文件 1409 2008-09-12 19:29 socket_ser\socket_serDlg.h
文件 212 2008-09-08 14:12 socket_ser\StdAfx.cpp
文件 1054 2008-09-08 14:12 socket_ser\StdAfx.h
目录 0 2008-09-19 10:57 socket_ser\res
目录 0 2008-09-24 19:27 socket_ser
----------- --------- ---------- ----- ----
174651 21
- 上一篇:PRIM算法,求最小生成树
- 下一篇:大气科学常用FORTRAN程序
相关资源
- 基于CSocket的多人聊天室
- socket文件传输源码
- Socket自制系统
- HP用SOCKET实现(客户端---服务端)
- zeromq的windows版本安装包
- STM32分别以串口硬件SPI模拟并口驱动
- 《TCP/IP:协议分析与应用编程》课后
- linux下基于socket和curses的双人弹球游戏
- 计算机网络socket编程实验
- linux下socket can 编程详解
- FANUC机器人Socket Message通讯设置及使用
- Delphi简单实现局域网远程开机
- 易语言websocket服务器源码
- websocket规范 RFC6455 中文版
- 富士康H61S主板最新BIOS,支持22NCPU
- Socket-UDP整合消息接收,发送
- websocket-rtsp-proxy-test.zip
- 基于QTsocket的局域网聊天室
- SuperSocket服务端与客户端通信
- 网络编程socket文件图片等传送
- tomcat7.0.42 下部署websocket需要替换的包
- 安卓手机socket通信服务端和客户端
- 物联网,WEBSOCKET丰富案例
- nodejs聊天室
- websocket简单web项目,直接部署可使用
- Windows与Linux之间使用socket进行文件传
- 基于SOCKECT的TCP的通信
- Socket实现一对一聊天
- 基于Socket的局域网即时通信系统的开
- 高德地图+websocket
评论
共有 条评论