代码搜索:sendclient

找到约 36 项符合「sendclient」的源代码

代码结果 36
www.eeworm.com/read/155704/5620002

cpp sendclient.cpp

// SendClient.cpp : implementation file // #include "stdafx.h" #include "SendClient.h" #include "head.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FI
www.eeworm.com/read/155704/5620031

h sendclient.h

#if !defined(AFX_SENDCLIENT_H__210219AA_0227_422B_8E1C_2458AEF6CAE1__INCLUDED_) #define AFX_SENDCLIENT_H__210219AA_0227_422B_8E1C_2458AEF6CAE1__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif
www.eeworm.com/read/300625/13902667

cpp sendclient.cpp

// SendClient.cpp : implementation file // #include "stdafx.h" #include "SendClient.h" #include "head.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FI
www.eeworm.com/read/300625/13902758

h sendclient.h

#if !defined(AFX_SENDCLIENT_H__210219AA_0227_422B_8E1C_2458AEF6CAE1__INCLUDED_) #define AFX_SENDCLIENT_H__210219AA_0227_422B_8E1C_2458AEF6CAE1__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif
www.eeworm.com/read/492306/6421322

java talkclient.java

import java.io.*; import java.net.*; public class TalkClient{ public static void main(String args[]){ try{ Socket s = new Socket("10.7.77.27",1234); InputStream is = s.getInpu
www.eeworm.com/read/492306/6421323

java talkserver.java

import java.io.*; import java.net.*; public class TalkServer{ public static void main(String args[]){ try{ ServerSocket ss = new ServerSocket(1234); Socket s = ss.accept();