daisy
daisy

Reputation: 23581

Is it possible to use network sockets in a DDK project?

Since WinSock and other socket C libraries are not available in DDK project, what should I use then ? I need to communicate in TCP protocol.

Upvotes: 0

Views: 237

Answers (1)

Carey Gregory
Carey Gregory

Reputation: 6846

You would use the Winsock Kernel (WSK) API. You can find sample code in src\network\wsk\echosrv.

Upvotes: 2

Related Questions