Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - send
Search - send - List
DL : 0
这个程序是在linux下利用串口发送数据,把字符串通过标准的语句进行发送。-This procedure is to make use linux serial port to send data to a string for transmission through a standard statement.
Update : 2024-05-18 Size : 1024 Publisher : 齐海鑫

基于c8051f330的2401的发送程序-2401 send based on c8051f330
Update : 2024-05-18 Size : 2048 Publisher : tanhang

DL : 0
支持串口设置,十六进制数据发送,ASCII码数据发送,文件发送;十六进制回显,ASCII码回显。-Support for serial port settings, hexadecimal, data transmission, ASCII code data sent, send the file echo hex, ASCII code echo.
Update : 2024-05-18 Size : 5318656 Publisher : 车飞

DL : 0
mailer in C# to send emails.
Update : 2024-05-18 Size : 14336 Publisher : mani

DL : 0
gsm code for 8051 .make calls and send sms using at commands. lcd interfaced
Update : 2024-05-18 Size : 2048 Publisher : dal

DL : 0
php发邮件程序,运行sendmail.php就可以了-send mail
Update : 2024-05-18 Size : 3072 Publisher : lash

OtherAT
DL : 0
AT收发短信的标准指令,对需要编写收发短信的朋友都有帮助,通俗易懂。-Standards for sending and receiving SMS AT commands, send and receive text messages on the need to write a friend have a help, easy to understand.
Update : 2024-05-18 Size : 129024 Publisher : 李龙

SCMsend
DL : 0
easyarm 1138 用c语言开发的 2401无线 发送程序-easyarm1138 c 2401 send
Update : 2024-05-18 Size : 40960 Publisher : 111

基于VC++的文件传输和FTP下载,支持多方下载和对聊天,利用广播实现P2P操作。-Based on VC++ file transfer and FTP downloads, supports multiple downloads and a chat, the use of radio to achieve P2P operation.
Update : 2024-05-18 Size : 32768 Publisher : huangquanlong

DL : 0
绿光抓包器.本程序只钩挂了"send","sendto","recv","recvfrom"这4个函数,WSAsend等不钩挂, 因为是用API钩子写的抓包程序,而且小弟也是菜鸟,难免有BUG。源代码可以任意修改和发布。 你改得好的话请给我一份。小弟感激不尽。-Ethereal green device. This procedure is only hook the " send" , " sendto" , " recv" , " recvfrom" the four functions, WSAsend, which do not hook because it is written with the API hooks Ethereal procedures, but younger brother is also a rookie, it is inevitable that BUG. The source code can be modified and published. Well, if you have changed Please give me a copy. Brother grateful.
Update : 2024-05-18 Size : 563200 Publisher : 334

基于j2me,应用javaAPI实现简单邮件的发送-Based on j2me, application javaAPI to achieve a simple message to send
Update : 2024-05-18 Size : 3072 Publisher : wen

DL : 0
用UDP协议传送信息;用TCP协议传送信息。 程序发送(send)的代码-send
Update : 2024-05-18 Size : 1024 Publisher : mht

SMSgsmsms
DL : 0
this application is used to send sms, the mobile or the gsm modem can be used.an access database can be connected to send multiple sms to contacts in the database.
Update : 2024-05-18 Size : 156672 Publisher : gladius

DL : 0
matlab访问串口的程序,包括:打开、关闭和清除串口对象;读串口、写串口;串口的数据流控制;还包括:怎么用matlab发送手机短信的例程;这是学习matlab访问系统硬件的原理,不可多得的经典例程!-matlab serial port access procedures, including: open, close and clear the serial port object read serial port and write serial port serial data flow control also include: how to send SMS using matlab routine it is to learn the principle of the hardware to access the system matlab , rare classic routines!
Update : 2024-05-18 Size : 91136 Publisher : 陈永恒

DL : 0
该程序为发送端程序,通过SOCKET 发送消息-send message by socket
Update : 2024-05-18 Size : 2607104 Publisher : wby

DL : 0
eeZee sMs is a simple powerful easy to use messaging utility that allows you to create and send group [mass] SMS messages to the list of selective Contacts, Phonebook or Individuals in worldwide. It allows you to create and send bulk SMS from PC to your customers via mobile phone or GSM Modem which connected with the PC.
Update : 2024-05-18 Size : 1089536 Publisher : Durgesh Dhoot

EVC的winsock发送当前目录下文件到对应服务器当前目录下,在远程地址栏输入接收端的IP地址、远程端口为50000、有三个按钮建立连接、断开连接、传送文件。最下面为状态显示。-EVC winsock to send the file to the current directory corresponds to the server the current directory, in the remote address field, enter the IP address of the receiver, the remote port 50000, there are three buttons to connect, disconnect, transfer files. Bottom of the status display.
Update : 2024-05-18 Size : 2987008 Publisher : gaowei

DL : 0
tcp udp 网络编程源码 //创建套接字 sHost = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) if(INVALID_SOCKET == sHost) { printf("socket failed!\n") WSACleanup() //释放套接字资源 return -1 } //设置服务器地址 servAddr.sin_family =AF_INET servAddr.sin_addr.s_addr = inet_addr("127.0.0.1") servAddr.sin_port = htons((short)4999) int nServAddlen = sizeof(servAddr) //连接服务器 retVal=connect(sHost,(LPSOCKADDR)&servAddr, sizeof(servAddr)) if(SOCKET_ERROR == retVal) { printf("connect failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 } //向服务器发送数据 ZeroMemory(buf, BUF_SZIE) strcpy(buf, "MyTCP") retVal = send(sHost, buf, strlen(buf), 0) if (SOCKET_ERROR == retVal) { printf("send failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 -tcp udp network programming source code// create a socket sHost = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP) if (INVALID_SOCKET == sHost) (printf ( " socket failed! \ n" ) WSACleanup () // release socket Word of resources return-1 )// set the server address servAddr.sin_family = AF_INET servAddr.sin_addr.s_addr = inet_addr ( " 127.0.0.1" ) servAddr.sin_port = htons ((short) 4999) int nServAddlen = sizeof ( servAddr) // connect to the server retVal = connect (sHost, (LPSOCKADDR) & servAddr, sizeof (servAddr)) if (SOCKET_ERROR == retVal) (printf ( " connect failed! \ n" ) closesocket (sHost) // Close socket WSACleanup () // release the socket resources return-1 )// to the server sending data ZeroMemory (buf, BUF_SZIE) strcpy (buf, " MyTCP" ) retVal = send (sHost, buf, strlen (buf), 0) if (SOCKET_ERROR == retVal) (printf ( " send failed! \ n" ) closesocket (sHost) // close the socket WSACleanup () // release socket resources to return
Update : 2024-05-18 Size : 2048 Publisher : 闛靚

DL : 0
电信短信网关发送部分源代码:public abstract class Sender-Telecom SMS Gateway to send part of the source code: public abstract class Sender
Update : 2024-05-18 Size : 5120 Publisher : pjp2008

DL : 0
Send data via TCP Socket
Update : 2024-05-18 Size : 1024 Publisher : Vijith
« 1 2 ... 10 11 12 13 14 1516 17 18 19 20 ... 50 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.