Skip to content

Latest commit

 

History

History
52 lines (47 loc) · 1.35 KB

File metadata and controls

52 lines (47 loc) · 1.35 KB
title Windows Sockets Classes | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic article
f1_keywords
vc.classes.net
dev_langs
C++
helpviewer_keywords
sockets classes
Windows Sockets [C++], classes
ms.assetid 58b9ab8d-9e44-4db3-8265-e04e713d2e9a
caps.latest.revision 10
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

Windows Sockets Classes

Windows Sockets provide a network protocol-independent way to communicate between two computers. These sockets can be synchronous (your program waits until the communication is done) or asynchronous (your program continues running while the communication is going on).

CAsyncSocket
Encapsulates the Windows Sockets API in a thin wrapper.

CSocket
Higher level abstraction derived from CAsyncSocket. It operates synchronously.

CSocketFile
Provides a CFile interface to a Windows Socket.

See Also

Class Overview