Search Results

12
votes

Boost Library

You can simply read the Boost Background Information page to get a quick overview of why you should use Boost and what you can use it for. W …
10
votes

How do you validate that a string is a valid IP address in C++?

This looks deceptively simple but has a few pitfalls. For example, many of the solutions posted in the previous answers assume that the quads are in base 10 - but a quad starting with a zero …
1
vote

Export HTML to PDF (C++, Windows)

PDFCreator can function as a virtual printer but it's also usable via COM. The default setup even includes COM examples. …
13
votes

Could anyone suggest a good packet sniffer class for c++?

You will never be able to intercept network traffic just by inserting a class into your project. Packet capture functionality requires kernel mode support, hence you will at the very least need to …
8
votes

How can you get a 4.2 release of g++/gcc for windows?

Twilight Dragon Media track and regularly release GCC releases usable for MinGW environments. The current release is based on GCC 4.3.2. …
6
votes

Compiling with g++ using multiple cores

There is no such flag, and having one runs against the Unix philosophy of having each tool perform just one function and perform it well. Spawning compiler processes is conceptually the job of the …
1
vote

How do I send and receive broadcast messages using QT 4.5 and Linux?

You could conceivably take a look at the very simple BroadcastSender and BroadcastReceiver examples that come bundled with QT. You will find them in the examples/network directory of y …
4
votes

Ensuring C++ doubles are 64 bits

You can use the Boost static assertions to do this. Look at the …
0
votes

What can be done in VC++ (native) that can’t be done with VC#?

For example, it makes sense to use C++ if it's harder to translate the header files for existing libraries than it is to give up the existing managed libraries. …