English 中文(简体)
除了聊天和档案分享申请之外,我可以开发哪些应用。
原标题:What are some applications that I can develop using winsock apart from chat and file sharing applications?

我是新鲜事,我期待着更多地了解我能做些什么。

最佳回答

任何类型的分配方案都需要两台或两台以上的机器在网络中相互交谈。 例如,Say有一台计算机操作程序,处理数据,你希望不时向其他电脑公布最新情况。 处理计算机可以发送一份附有其地位的UDP数据表,而其他电脑上运行的方案可以听取这些更新。

正如RichieHindle所说,任何使用网络的Windows方案最终都通过Winsock进行,尽管大多数使用较高层次的接口,而不是直接使用袖珍。

问题回答

上网的任何Windows方案都使用Winsock。 你可以撰写其中的任何方案。 页: 1

(为了公平起见,多数人将在温斯克顶端使用高层次的APIC,这通常是一个更有成效的出路。) 如果你想写一个“Twitter”客户的话,那么,由于“Twitter”在“吉卜赛人”的上空工作,你使用“温斯克”图书馆。





相关问题
Max Outgoing Socket Connections in .NET/Windows Server

I have a slightly unusual situation where I m needing to maintain CLIENT tcp connections to another server for thousands of mobile users on my servers (basically the mobile devices connect to my ...

Determine the remaining TTL of a multicast packet in Java

If I have a Java program that listens to multicast data, how can I tell what the remaining TTL of the incoming datagram is? I know how to set the TTL on the sending multicast socket, but I want to ...

Python socket not receiving anything

I m trying to receive a variable length stream from a camera with python, but get weird behaviour. This is Python 2.6.4 (r264:75706) on linux(Ubuntu 9.10) The message is supposed to come with a ...

Connecting to a Source game server in VB.NET

I m developing an application that detects Source-based games running on the LAN. Following up on the specifications provided by Valve, I have it narrowed down to exactly what I want: making a UDP ...

What can cause select to block in Python?

Here s a snippet of code I m using in a loop: while True: print loop rlist, wlist, xlist = select.select(readers, [], [], TIMEOUT) print selected # do stuff At a certain point, ...

Socket.UseOnlyOverlappedIO?

Does anyone know what Socket.UseOnlyOverlappedIO does, and if so, does it affect performance? There seems to be no real explanation on MSDN. Thanks in advance.

热门标签