Location:
Search - accept socket
Search list
Description: Linux下简单的网络通讯:发出接受数据(Socket)编程-Linux simple network communications : data issued accept (Socket) Programming
Platform: |
Size: 14190 |
Author: 张sir |
Hits:
Description: 含有接收、发送、服务三个线程的Socket程序 -Three socket apps contains accept, send and server
Platform: |
Size: 11264 |
Author: 站长 |
Hits:
Description: Linux下简单的网络通讯:发出接受数据(Socket)编程-Linux simple network communications : data issued accept (Socket) Programming
Platform: |
Size: 14336 |
Author: 张sir |
Hits:
Description: 服务器与客户间通过套接口Socket(TCP)连接。在java中使用套接口相当简单,Java API为处理套接口的通信提供了一个类java.net.Socket.,使得编写网络应用程序相对容易.服务器采用多线程以满足多用户的请求,通过JDBC与后台数据库连接,并通过创建一个ServerSocket对象来监听来自客户的连接请求,默认端口为8080,然后无限循环调用accept()方法接受客户程序的连接-server and client presentation by Socket Interface (TCP) connections. Java use in presentation interface is quite simple, Java API sets to address the communications interface provides a type java.net.Socket. , Making the preparation of network applications relatively easily. Multi-threaded servers to meet the multi-user request, through JDBC and background database connections, and through the creation of a ServerSocket object from the client to monitor the connection request, the default port of 8080, then infinite loops call accept () method to accept client connections
Platform: |
Size: 903168 |
Author: |
Hits:
Description: winsocket编程
服务器端程序
当服务器端的网络监听功能打开后,便处于实时的监听状态,可即时监听到用户通过socket发来的信息并进行相应的处理,可同时接受多个用户同时连接,并开启多个处理线程。-winsocket programming process server when the server side of the open network monitoring functions, it is a real-time status monitoring, immediately listening to the user through the socket to the information and the corresponding treatment can also accept multiple users simultaneous connections, and open more of threads.
Platform: |
Size: 256000 |
Author: 流星剑 |
Hits:
Description: socket编程,包括server和client端的程序,具体到connnect,bind,accept,rev,send等等的基本函数,是入门的真好资料-socket programming, including the server and client side of the process, specific to connnect, bind, accept, rev, send the basic function, etc., is the entry of amazing information
Platform: |
Size: 1168384 |
Author: abc |
Hits:
Description: 一个采用TCP协议的网络测试工具。采用VC6.0开发环境,具有客户端和服务器端,加入进来的客户端可以互相发送接受数据,对学习socket编程是不错的借鉴。-using a TCP network testing tools. VC6.0 use development environment with the client and server side, joined the client can accept each other this data, to learn socket programming is a good reference.
Platform: |
Size: 52224 |
Author: lh |
Hits:
Description: 首先Server程序创建两个socket,分别为 TCP socket(使用命令行参数指定的端口号)和UDP socket(UDP端口号自定义,使用宏定义写在程序里,必须大于1024)。server端在这两个端口上侦听连接,接受来自客户端的服务请求。客户端根据提示进行操作。-procedures created two socket, for TCP socket (using the command line parameters designated ports), and UDP socket (UD P-defined port, the use of write-in process definition, must be greater than 1024). In this terminal server ports on the two monitors connected to accept from the client service requests. According to client instructions.
Platform: |
Size: 155648 |
Author: 李皓雯 |
Hits:
Description: EVC;Winsock编程,客户端的通讯程序;建立PC端的服务器程序,接受WinCE客户端的字符输入,显示在PC端服务器的输出显示窗口中,同时有开发办客户端字符发送接受程序。-EVC; Winsock programming, client communication procedures; The establishment of PC-server, WinCE client accept the character input, display terminal server in the PC shows the output window, while the Office for the Development of the client acceptance process this character.
Platform: |
Size: 449536 |
Author: 张敏捷 |
Hits:
Description: 一个比较全面socket服务端加客户端。能实现多项更能,原码没有找到,发一个编译好了的。-a more comprehensive socket server plus client. Better able to realize many of the original code is not found, made a good translation of it.
Platform: |
Size: 468992 |
Author: tangjing |
Hits:
Description: 基于终端的订花系统_socket
#include<stdio.h>
#include<stdlib.h>
#include<errno.h>
#include<string.h>
#include<sys/types.h>
#include<netinet/in.h>
#include<sys/socket.h>
#include<sys/wait.h>
#include<sys/ipc.h>
#include<unistd.h>
#include<sys/shm.h>
#include<sys/stat.h>
#define MYPORT 3490 // num of port
#define BACKLOG 5 // largest num of accept
#define MAXDATASIZE 1-based terminal Dinghua system _socket# include
Platform: |
Size: 4096 |
Author: xxf |
Hits:
Description: telnet服务器的实现:
1.客户端通过telnet连接后,服务器返回系统的一些信息(自己定义,至少应该包括程序作者的学号),之后显示提示符"login:"提示用户输入用户名进行登录
2.要求对用户名和密码进行验证。用户名和密码均为学号的后3位。如果用户名和密码错误则返回invalid user or passwd并提示重新输入
3.服务器端至少支持如下命令(命令不带参数)
author:返回程序作者的相关信息
date:返回服务器的当前日期,日期的格式自己定义,但在help中做出说明
time:返回服务器的当前时间,时间的格式自己定义,但在help中做出说明
help:返回服务器所支持的命令
bye:与服务器断开连接
若输入了不支持的命令,则应回显相应的提示,如提示用户键入help来查看相应的命令
提示:服务器端有一个接收客户端输入字符的缓冲区,逐个字符进行接收;当发现是回车键后,即执行已接收字符对应的命令并回显.另外,telnet.exe是windows下自带的程序
设计的要求如下:
1.使用基本的套接口函数进行开发,即使用socket()、bind()、listen()、accept()等
2.不使用图形界面,只要能用文本显示相关信息即可,另外,需要把这些相关信息写入到一日志文件中(文件名为:学号.txt)
内附程序说明书
Platform: |
Size: 70656 |
Author: 张某某 |
Hits:
Description: 利用udp来传输文件,socket发送(接受)程序。-Using udp to transfer files, socket send (accept) program.
Platform: |
Size: 15399936 |
Author: 李长欣 |
Hits:
Description: 服务器与客户间通过套接口Socket(TCP)连接。在java中使用套接口相当简单,Java API为处理套接口的通信提供了一个类java.net.Socket.,使得编写网络应用程序相对容易.服务器采用多线程以满足多用户的请求,通过JDBC与后台数据库连接,并通过创建一个ServerSocket对象来监听来自客户的连接请求,默认端口为8080,然后无限循环调用accept()方法接受客户程序的连接-Between server and client through the socket Socket (TCP) connection. In java using a very simple set of interfaces, Java API to handle socket communications category provides a java.net.Socket., Makes the preparation of web applications is relatively easy. Server used to meet the needs of multi-threaded multi-user request, through the JDBC database connection with the background and, through the creation of a ServerSocket object to monitor connection requests from clients, the default port is 8080, and then infinite loop calling accept () method to accept client connection
Platform: |
Size: 164864 |
Author: 达瓦 |
Hits:
Description: 这是一个用来网络传输数据的程序,
用来接受发送数据,我测试过,很好用-This is a network used to transmit data the procedures used to accept sending data, I tested, very good use
Platform: |
Size: 8192 |
Author: huang |
Hits:
Description: Socket服务器端-客户端程序:客户端链接服务器后,向服务器发送数据;服务器端建立连接后可以接受客户端数据,互相通信-Socket server-side- Client: Client link server, send data to the server server-side connection can accept client data, communicate with each other
Platform: |
Size: 6144 |
Author: |
Hits:
Description: 用Java Socket完成如下功能:建立客户端和服务器端通讯,服务器端地址为本地端口自拟。两端以TCP形式通讯,假设客户端Class叫Client,服务器端Class叫Server。当运行 java Client Hello时,服务器端能接受客户发来的Hello字符并打印”Receive Hello”然后返回给客户端“How r u doing”字符串 客户端收到后打印”Received How are you doing”. 此时服务器端服务始终运行并未停止并等待其他Socket连接(客户端运行一次可以停止),直到客户运行 java Client Bye时 服务器端收到”Bye”并打印”I don’t wanna die”后 服务器停止运行。-Java Socket complete with the following functions: the establishment of client and server communications, server-side address of the local port from be. TCP in the form of communication at both ends, assuming that the client Class called Client, server-side Class called Server. Java Client Hello When running, the server can accept Hello Guest sent characters and print the " Receive Hello" and then go back to the client " How ru doing" string after the client received print " Received How are you doing" . This When running server-side service is not always stop and wait for the other Socket connection (the client can stop a run), until the customer is running java Client Bye received at the server-side " Bye" and print " I don' t wanna die" after the server to stop run.
Platform: |
Size: 32768 |
Author: wangdan |
Hits:
Description: Socket C++封装类, start, bind, listen, accept, close, send, recv-Socket C++ package type, start, bind, listen, accept, close, send, recv ...
Platform: |
Size: 7168 |
Author: Joker Lee |
Hits:
Description: WinSock基本函数的用法介绍,WSAStartup(),accept(),socket()等等函数。-The basic function of the use of WinSock description, WSAStartup (), accept (), socket (), etc. functions.
Platform: |
Size: 8192 |
Author: 高锋 |
Hits:
Description: socket 接受网络数据包,并且将接受到的数据写入文件中。-Socket accept network packets, and will accept the data writing to file.
Platform: |
Size: 1778688 |
Author: 刘书明 |
Hits: