CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 嵌入式/单片机编程 嵌入式Linux 搜索资源 - 客户 服务器

搜索资源列表

  1. talk_tcp_linux

    0下载:
  2. unix/linux使用socket编程的一个具体示例,包括服务器段和客户端程序。并给出使用嵌入式microwin的GUI的参考设计说明。-unix / linux use socket programming of a specific examples, including the server and client programs. Given the use of embedded microwin GUI reference design specification.
  3. 所属分类:嵌入式Linux

    • 发布日期:2008-10-13
    • 文件大小:897.61kb
    • 提供者:刘浪
  1. socket_linux

    0下载:
  2. 嵌入式linux系统的socket通信程序,包括服务器端和客户端程序-Embedded Linux System socket communication procedures, including server and client programs
  3. 所属分类:嵌入式Linux

    • 发布日期:2008-10-13
    • 文件大小:26.92kb
    • 提供者:许永贤
  1. UDPImageArmLinux

    0下载:
  2. 基于uclinux采用udp通讯协议实现图象等网络规范文件的传输.采用c/s模式,服务器端实现并发而响应多个客户的请求.经过测试,代码能在linux主机之间,arm与arm之间以及pc与arm之间进行通讯(文件中的readme(此为linux下编写)对代码有个总体说明)-use udp protocol communications networks such as image regulatory document transmission. Using c / s mode, the ser
  3. 所属分类:嵌入式Linux

    • 发布日期:2008-10-13
    • 文件大小:839.73kb
    • 提供者:吴敏
  1. my_audio

    0下载:
  2. 我写的基于2410的音频播放的程序,采用c/s结构,pc客户端上传音频流,服务器端建立帧缓冲区接收,并播放出来-I wrote based on the 2410 Audio Player procedures adopted c / s structure, pc client uploads audio streams, the server-frame buffer zone established to receive and broadcast
  3. 所属分类:嵌入式Linux

    • 发布日期:2008-10-13
    • 文件大小:30.32kb
    • 提供者:lifeng
  1. linux_program_video

    0下载:
  2. 基于linux嵌入式开发板的图像采集 服务器端作为图像采集端客户从服务器接受图像-Embedded Linux based development board of server-side image acquisition as image acquisition from the client server accepts images
  3. 所属分类:嵌入式Linux

    • 发布日期:2008-10-13
    • 文件大小:39.74kb
    • 提供者:赵石磊
  1. QT_liaotian QT聊天室

    0下载:
  2. QT聊天室:分服务器端和客户端,开启服务器端后,客户端连接到服务器的IP上(可建立多个客户端)即可聊天。-QT chat room: min server and client, open the server, the client connects to the server' s IP on (can create multiple clients) to chat.
  3. 所属分类:嵌入式Linux

    • 发布日期:2017-03-30
    • 文件大小:790.89kb
    • 提供者:单洪福
  1. networking.rar

    0下载:
  2. 嵌入式Linux下使用的telnet客户端和服务器源码,非常经典。,Embedded Linux to use the telnet client and server source code, very classic.
  3. 所属分类:Embeded Linux

    • 发布日期:2017-03-29
    • 文件大小:9.61kb
    • 提供者:lee
  1. QQ2

    0下载:
  2. C语言实现的多人聊天系统,有图形界面,界面是用QT做的,程序有服务器和客户端!-C language implementation of the multiplayer chat system, a graphical interface, the interface is to do with QT, process servers and clients!
  3. 所属分类:Embeded Linux

    • 发布日期:2017-03-30
    • 文件大小:79.76kb
    • 提供者:张国军
  1. nettest

    0下载:
  2. 嵌入式arm7uclinux操作系统应用程序编程.基于uclinux的网络编程,包括了客户端和服务器端程序,在44b0开发板上实现-Embedded operating system application programming arm7uclinux. UClinux-based network programming, including client and server-side procedures, the development board to achieve 44b0
  3. 所属分类:Embeded Linux

    • 发布日期:2017-04-07
    • 文件大小:2.03kb
    • 提供者:apay2004
  1. mrua_EM8622L_2[1].8.2.0_dev.arm.nodts

    0下载:
  2. 1. 8623L平台,其并行flash已经被烧入uClinux系统,并有IP地址. 2. Windows客户机,使用tera term通过串口,把kernel烧到并行flash上,用命令boot rom启动uClinux并且登陆. 3. Linux服务器,主要作用是编译软件,有nfs服务,nfs服务目录是/nfsdir,文件包括有8623L的驱动程序,应用程序和音视频文件,可以被8620L使用. em8623的开发包-1. 8623L platform, and its paral
  3. 所属分类:Embeded Linux

    • 发布日期:2017-05-24
    • 文件大小:7.58mb
    • 提供者:yf133
  1. communication_model_of_GPRS.RAR

    0下载:
  2. PDA,PND的GPRS通信模块,用于传输短消息和图片,包括了服务器和客户端的代码-PDA, PND' s GPRS communication module, for the transmission of short messages and pictures, including the server and client code
  3. 所属分类:Embeded Linux

    • 发布日期:2017-04-16
    • 文件大小:40.88kb
    • 提供者:taozhaoqing
  1. socket2

    0下载:
  2. 基于linux操作系统下的socket编程,完成一个简单聊天工具。服务器端首先:向内核申请一个socket。第二绑定地址到socket上,地址包括主机、端口。第三在socket上,允许接入呼叫并设置队列长度为1.第四等待/接受呼叫。第五传输数据(及可以聊天)。 客户端:第一向内核请求建立socket 第二与服务器相连。第三传输数据 -Linux operating system based on the socket programming, to complete a simple
  3. 所属分类:Embeded Linux

    • 发布日期:2017-03-28
    • 文件大小:13.92kb
    • 提供者:zhangwei
  1. TCPserverclient

    0下载:
  2. 使用TCP建立的客户端和服务器通信的一个简单代码 适合初学者学习-Established using the TCP client and server communications in a simple code for beginners to learn
  3. 所属分类:Embeded Linux

    • 发布日期:2017-03-27
    • 文件大小:4.68kb
    • 提供者:李山
  1. UDPserverclient

    0下载:
  2. 基于UDP的客户和服务器的简单代码 适合初学者使用-UDP client and server based on the simple code
  3. 所属分类:Embeded Linux

    • 发布日期:2017-04-13
    • 文件大小:1.57kb
    • 提供者:李山
  1. ftp_server_client20090726

    0下载:
  2. 简单服务器,可以完成命令行下的文件传输,包括了服务器和客户端的程序-server and client
  3. 所属分类:Embeded Linux

    • 发布日期:2017-03-29
    • 文件大小:32.3kb
    • 提供者:guo
  1. ftp

    0下载:
  2. 嵌入式操作系统中,自己写ftp客户端和服务器端的代码-Embedded operating system, write your own ftp client and server-side code
  3. 所属分类:Embeded Linux

    • 发布日期:2017-04-07
    • 文件大小:5.03kb
    • 提供者:jone_tiger
  1. bluetooth

    1下载:
  2. 本设计是基于蓝牙技术设计的一个嵌入式的点菜系统,采取c/s结构,将嵌入式开发板arm2410s作为无线点菜器,也就是客户端,pc作为后台管理器,也就是服务器端,服务器端在linux下进行开发,客户端和服务器端通过蓝牙进行无线通信,其中利用qt designer制作菜单界面。-The design is based on the design of an embedded Bluetooth technology a la carte system, to c/s structure, the e
  3. 所属分类:Embeded Linux

    • 发布日期:2015-02-01
    • 文件大小:828kb
    • 提供者:liao
  1. ICBChat

    0下载:
  2. 这个是从客户端向服务器传输文件的例子,网上很少的一个,大家赶紧下载学习-This is from the client to transfer files to the server example, a few online, we quickly learn to download
  3. 所属分类:Embeded Linux

    • 发布日期:2017-05-02
    • 文件大小:621.63kb
    • 提供者:jiangya
  1. ntp-4.2.0.tar

    1下载:
  2. 一个开源的NTP服务器客户端实现代码,可用于嵌入式系统开发。经测试此包可用-An open source implementation of the NTP server client code can be used for embedded system development
  3. 所属分类:Embeded Linux

    • 发布日期:2014-08-25
    • 文件大小:2.4mb
    • 提供者:周先生
  1. application

    0下载:
  2. arm-linux环境小型物联网络,应用层程序,包括服务器端和客户端两部分-arm-linux environment-linked network of small objects, the application layer procedures, including server and client in two parts
  3. 所属分类:Embeded Linux

    • 发布日期:2017-03-29
    • 文件大小:33.94kb
    • 提供者:zl
« 12 3 »
搜珍网 www.dssz.com