Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm looking for a library which allows my C++ application (run in Windows) to download torrents. I can't, however, find any out there.
Can someone please point me in the right direction?
Thanks in advance.
http://www.rasterbar.com/products/libtorrent/
It is used in Halite, which is a pretty good client :)
The library has a BSD license, and seems to be used in quite a few clients:
http://www.rasterbar.com/products/libtorrent/projects.html
Qt has an example: torrent client.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm going to make a realtime multiplayer game using the WebSocket technology. However, I am unsure which server implementation I should use. I've found two mature (enough) libraries that suit my needs. libwebsockets and WebSockets++.
Did anyone try them out? Can someone point out the main differences between these two libraries?
You can have a look at QWebSockets, which is written in Qt and works both for clients and servers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I was wondering if anyone knows of a arping api or wrapper written in c++ not c ? I have looked at the libpcap library but I want a c++ alternative if possible
http://www.tcpdump.org/pcap3_man.html
Programmatic use of ARP
Thanks
Libpcap's APIs should be callable from C++, at least in newer versions that have extern "C" wrappers in the header files.
This looks like it will work http://libpcappp.sourceforge.net/ libpcap++
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have to add a ftp server to my C++ program so it can receive some files.
Do you know any library out there in C or C++ ?
This one is exactly what I'm looking for: http://sourceforge.net/projects/cftpserver
It's a nice class of two files only where you can start, stop the server, set port,
add users that can connect and their home directory etc ...
This seems to be a good one: http://www.codeproject.com/KB/IP/ftpclientclass.aspx
These guys are known for making the premier network libraries: http://www.nsoftware.com/ipworks
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to create a mfc window that has tabs on top.
I cannot find a good tutorial or example of this.
Can someone give me a link to a good tutorial of example?
please help me.
You mean like this?
MFC app in VS 2010 http://blogs.msdn.com/photos/vcblog/images/9927511/original.aspx
Here is a walkthrough that should take you where you need to be: http://blogs.msdn.com/b/vcblog/archive/2009/11/23/teched-europe-demo-session-face-lifting-mfc-applications-on-windows-7.aspx
Install the Visual C++ Feature Pack. It comes with newer libraries to do this.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I need a portable C/C++ solution, so I'm looking for a C/C++ client library for Memcached that work on both Windows and Unix. Any suggestions?
There's libmemcached in C. Should be most portable :)
http://people.freebsd.org/~seanc/libmemcache/
HTH