Search Results

5
votes

C/C++ Web Server Library?

My current favourite is libpion: pion-network-library which effectively uses the …
1
vote

Using “super” in C++

One additional reason to use a typedef for the superclass is when you are using complex templates in the object's inheritance. For instance: template <typename T, size_t …
0
votes

minimum c++ make file for linux

florin has a good starting point. I didn't like gnu autoconf so I started there and took the concept further and called it the MagicMakefile. I have 3 versions of it from simple to more complex: …
1
vote

Stuck on a Iterator Implementation of a Trie

You may want to see my modified trie implementations at: jdkoftinoff's trie Specif …
0
votes

Complete solution for writing Mac OS X application in C++

Carbon on Mac OS X is effectively deprecated - it does not and will not support 64 bit apps. If you really really want to use c++, use …
6
votes

C++ sockets library for cross-platform

The best socket library out there using modern c++ is: Boost::Asio Howe …
0
votes

SQLite Alternatives for C++

If SQL syntax is not important to you, I recommend MetaKit - It is a slightly different approach but it quite powerful and I personally kn …
0
votes

Giving C++ Application a HTTP Web Server Functionality

I am partial to the poco library as a starting point. …
0
votes

How can I hook Windows functions in C/C++?

Take a look at EasyHook - it is more powerful than Detours and it is free. …
0
votes

What C/C++ functions are most often used incorrectly and can lead to buffer overflows?

An additional gotcha in C is the "strncpy()" function. Many people do not realize that it is free to return a string that is not null terminated. …