代码搜索:ClientSocket
找到约 1,840 项符合「ClientSocket」的源代码
代码结果 1,840
www.eeworm.com/read/288766/8608974
cpp clientsocket.cpp
// ClientSocket.cpp : implementation file
//
#include "stdafx.h"
//#include "TestSvr.h"
#include "ClientSocket.h"
#include "chatServer.h"
#include "pkg.h"
#ifdef _DEBUG
#define new DEBUG_N
www.eeworm.com/read/288766/8609010
h clientsocket.h
#if !defined(AFX_CLIENTSOCKET_H__048EDBFF_0BE8_47E3_8C9B_922DA366D902__INCLUDED_)
#define AFX_CLIENTSOCKET_H__048EDBFF_0BE8_47E3_8C9B_922DA366D902__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#en
www.eeworm.com/read/431256/8693029
cpp clientsocket.cpp
// ClientSocket.cpp : 实现文件
//
#include "stdafx.h"
#include "QClient.h"
#include "ClientSocket.h"
// CClientSocket
CClientSocket::CClientSocket(CQClientDoc * pDoc)
{
m_pDoc=pDoc;
}
www.eeworm.com/read/431256/8693044
h clientsocket.h
#pragma once
#include "QClientDoc.h"
class CQClientDoc;
// CClientSocket 命令目标
class CClientSocket : public CSocket
{
public:
CClientSocket(CQClientDoc * pDoc);
CQClientDoc * m_pDoc;
www.eeworm.com/read/386888/8719974
cpp clientsocket.cpp
// ClientSocket.cpp : implementation file
//
#include "stdafx.h"
#include "Server.h"
#include "ClientSocket.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[]
www.eeworm.com/read/386888/8720002
h clientsocket.h
#if !defined(AFX_CLIENTSOCKET_H__0CB6554C_25EC_419E_A0B5_9B787056CF19__INCLUDED_)
#define AFX_CLIENTSOCKET_H__0CB6554C_25EC_419E_A0B5_9B787056CF19__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#en
www.eeworm.com/read/286340/8770587
cpp clientsocket.cpp
// ClientSocket.cpp: implementation of the CClientSocket class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "songclient.h"
#include "C
www.eeworm.com/read/286340/8770604
h clientsocket.h
// ClientSocket.h: interface for the CClientSocket class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CLIENTSOCKET_H__7DECF1B1_A996_4BF8_96AF_331591
www.eeworm.com/read/385022/8824136
java clientsocket.java
package socket1;
import java.net.*;
import java.io.*;
//创建连接
public class ClientSocket {
private String ip;
private int port;
private Socket socket = null;
DataOutput
www.eeworm.com/read/385022/8824137