登录
首页 » Windows Socket编程 » 数字硬盘录像机的网络客户端程序,用来播放dvr数据和控制服务端设置的代码.商业软件,请不要使用再企业中....

数字硬盘录像机的网络客户端程序,用来播放dvr数据和控制服务端设置的代码.商业软件,请不要使用再企业中....

于 2023-02-08 发布 文件大小:115.31 kB
0 213
下载积分: 2 下载次数: 1

代码说明:

数字硬盘录像机的网络客户端程序,用来播放dvr数据和控制服务端设置的代码.商业软件,请不要使用再企业中.-digital disk recorder network client, Top players used to control data and services Set-up code. commercial software, then please do not use the enterprise.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 在网上搜索到的很早的大宝兄的代码,写的还是满不错的,多采用List实现。希望对大家开发有所帮助。...
    在网上搜索到的很早的大宝兄的代码,写的还是满不错的,多采用List实现。希望对大家开发有所帮助。-Online english to early Dabao brother of code, written in full or good use List realize. Would like to help everyone develop.
    2022-02-20 03:56:23下载
    积分:1
  • 获取网络上某台电脑的ip地址,权威序!经典认证。
    获取网络上某台电脑的ip地址,权威程序!经典认证。-access to a network of computers ip address, authoritative procedures! Classic certification.
    2022-02-26 05:27:11下载
    积分:1
  • 在Windows下用VC6.0的网络火柴棍游戏,包含服务器端和客户端,一次同时开放两个客户端...
    在Windows下用VC6.0编的网络火柴棍游戏,包含服务器端和客户端,一次同时开放两个客户端-In Windows, compiled with VC6.0 network matchstick games, including server-side and client-side, one at the same time, opening up two client-side
    2023-08-07 04:25:05下载
    积分:1
  • 基于WMI的PC资产管理系统,这是客户端,负责收集本地主机资源。...
    基于WMI的PC资产管理系统,这是客户端,负责收集本地主机资源。-WMI"s PC-based asset management system, which is the client responsible for the collection of local host resources.
    2022-03-16 18:13:38下载
    积分:1
  • 网络嗅探器Sniffer序简单,对初学者很有用哦
    简单的网络嗅探编程sniffer, 对初学者很有用的哦-Simple programming network sniffer sniffer, very useful for beginners Oh
    2023-06-06 22:45:02下载
    积分:1
  • 用套接字的方式连接2个电脑,之后在一方电脑上画图,另一方电脑可以实时显示...
    用套接字的方式连接2个电脑,之后在一方电脑上画图,另一方电脑可以实时显示-Way to use sockets to connect two computers on one computer after the drawing, the other computer can be real-time display
    2023-02-04 21:05:03下载
    积分:1
  • java虚拟社区序 网络 网上银行 社区
    java虚拟社区程序 网络编程 网上银行 社区 -java virtual community network programming online banking program community
    2023-02-06 18:35:03下载
    积分:1
  • 序说明: 1.序采用网上介绍的方法实现最基本的P2P方式通讯.模拟实现即时消息互发. 2.P2P通讯说明: 1).网关类型是在理想状态下.即非对称型NAT....
    程序说明: 1.程序采用网上介绍的方法实现最基本的P2P方式通讯.模拟实现即时消息互发. 2.P2P通讯说明: 1).网关类型是在理想状态下.即非对称型NAT. 2).同在一个内网的两个CLIENT端通讯时,如果网关NAT不支持环回,将会失败. 文件目录说明: tQServer:程序服务端,请将其放在公网上运行. tQClient:程序客户端,可以在不同的内网中运行登录连接到服务端. Common:公共协议文件夹 本程序只是实现简单的P2P互发消息.完成的比较粗糙,更多功能欢迎朋友们更新完善-procedures : 1. Online procedures introduced by the most basic method of peer-to-peer communication. Simulation made instant messaging each other. 2.P2P communications Note : 1). Gateway is the ideal type of state. That is non-symmetric NAT. 2). In the same period net CLIENT-2 communications, if not support NAT Gateway Circular, will fail. directory : tQServer :-service procedures, I would be grateful if the public on its Internet. tQClient : clients, in different operations within the network login to connect to the server. Common : Public the agreement folder procedure is a simple peer-to-peer updates. completion of the rougher, more functional friends welcome update perfect
    2022-03-31 17:02:30下载
    积分:1
  • Microsoft VC++7.0 Change 具体使用解压后即可得知
    Microsoft VC++7.0 Change 具体使用解压后即可得知-Microsoft VC 7.0 Change specific use to get unpacked
    2022-10-31 14:55:03下载
    积分:1
  • P2P c++ sdk
    P2P dll c++ ,  static emReturnType SetAppType(emAppType AppType);//设置程序类型,服务器emAppType_Server或者客户端emAppType_Client  static emReturnType SetClientCallback(IMsgCallback *pMsgCallback);//设置回调类,回调类继承IMsgCallback接口  static emReturnType Startup();//开启网络  static emReturnType Cleanup();//关闭网络  //Server  以下函数是服务器调用  static emReturnType BeginService(unsigned short nPort);//如果是服务器,调用该函数开启服务,nPort:端口号  static emReturnType EndService();//服务器退出的时候,调用该函数关闭服务  //Client  以下函数是客户端调用  static emReturnType Logon(LOGONINFO* pLogonInfo);//函数登录服务器。pLogonInfo:登录信息,详细见P2PHeaderDef.h->LOGONINFO  static emReturnType Logout();//登出服务器  static emReturnType ConnectAnchor(CLIENTINFO* pClientInfo);//连接主播,该函数是用户调用  static emReturnType SendP2PMSG(CLIENTINFO* pClientInfo, char* pszMsg, int nMsgLen);//发送P2P消息,pClientInfo,要发送的客户信息,如果是用户,则pClientI
    2022-02-03 19:54:38下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载