arping in c++ on linux [closed] - c++

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++

Related

C++ LibVLC dos it work? [closed]

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 would like to use LibVLC in C++, but looking in the documentation I saw that a version named LibVLCpp existed.
Only impossible to find it. Does LibVLC work in C++ ?
Does LibVLC work in C++ ?
Yes, you can use it like any other c-API in c++.

Torrent Library for C++, Windows [closed]

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.

Compiling/Debugging LZMA [closed]

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 2 years ago.
Improve this question
I need to compile the C++ implementation of LZMA (7Z). Does anybody know how to do that? where should I download it from?
Thanks so much in advance.
Get LZMA SDK, read lzma.txt and take a look at LzmaUtil.c if you don't like C there is some C++ sources there too.

XML-RPC library for C++ [closed]

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
What libraries are available for writing xml-rpc clients in native C++ or C?
You might want to check out either xmlrpc-c or xmlrpc++.
I found a list of xml-rpc implementations in many different languages. Hopefully this list will be useful to others.

Memcached client for Windows in C or C++? [closed]

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