user1692342
user1692342

Reputation: 5237

DNS Server in c/c++ for windows

Is there any DNS Server written in C/C++ which can be compiled using Visual studio on Windows? I have found many DNS servers, but all of them seem to run only on Linux or require a MinGW compiler.

Upvotes: 1

Views: 972

Answers (2)

Marcus Riemer
Marcus Riemer

Reputation: 7688

This tutorial uses the Visual Studio compiler to build the BIND dns server, but from the command line. It does also explain how to correctly compile OpenSSL, which can be quite a pain.

Upvotes: 3

CharlesB
CharlesB

Reputation: 90316

In case no such project exist, it shouldn't be too difficult (although tough) to port a project intended to be built in MinGW to Visual Studio.

Upvotes: 2

Related Questions