mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
f24547cdcf
* enh(poco): Replace deprecated comments with C++ deprecated attribute. * enh(Poco): Replace some deprecated functionality in Poco sources. (#4426) * enh(Poco): Replace more deprecated functionality in Poco sources. (#4426) * fix(CMake): Variable BUILD_SHARED_LIBS must be defined properly to create valid binaries. * enh: Code improvements done while resolving deprecated functionality (#4426) * Un-deprecate LocalDateTme (#4426) * enh(Poco): Replace usage of deprecated functionality with other functions/classes (#4426) * chore(SSL): temporarily un-deprecate SSL-related functionality (#4426) * chore(SSL): temporarily un-deprecate old MongoDB protocol functionality (#4426) * enh(Poco): Minor Hash improvements (#4426) * enh(Foundation): Compile deprecated hash tests only when POCO_TEST_DEPRECATED is enabled (#4426) * enh(Net): Compile deprecated Socket::select functionality only when POCO_TEST_DEPRECATED is enabled (#4426) * enh(Bonjour): Replace deprecated Socket::select with PollSet (#4426) * enh(Poco): Introduce POCO_DEPRECATED macro to have the ability to disable deprecation warnings in applications (#4426) * test(ODBC): add few asserts to testStoredProcedureDynamicVar * fix(ODBC): rename DynamicAny -> DynamicVar in tests * fix(ODBC): make Dignostics static members inline to prevent explicit instantiation warnings on windows --------- Co-authored-by: Alex Fabijanic <alex@pocoproject.org> |
||
---|---|---|
.. | ||
Avahi | ||
Bonjour | ||
cmake | ||
Default | ||
doc | ||
include/Poco/DNSSD | ||
samples | ||
src | ||
CMakeLists.txt | ||
dependencies | ||
DNSSD_vs90.sln | ||
DNSSD_vs90.vcproj | ||
DNSSD_vs160.sln | ||
DNSSD_vs160.vcxproj | ||
DNSSD_vs160.vcxproj.filters | ||
DNSSD_vs170.sln | ||
DNSSD_vs170.vcxproj | ||
DNSSD_vs170.vcxproj.filters | ||
DNSSD_x64_vs90.sln | ||
DNSSD.progen | ||
LICENSE | ||
Makefile | ||
README.md |
POCO DNS-SD (Zeroconf) Wrapper Library for Bonjour and Avahi
This is a POCO-based wrapper library providing an easy-to-use and unified programming interface to Apple Bonjour and Avahi libraries implementing DNS Service Discovery (DNS-SD, also known as Zeroconf).
Prerequisites
The Apple Bonjour SDK is needed on Windows (and OS X, of course). The Avahi client libraries are needed on Linux.
Getting Started
Clone into the root of an existing POCO source tree.
$ git clone https://github.com/pocoproject/poco-dnssd.git DNSSD
On Linux, build with cmake like below.
$ git apply DNSSD/CMakeLists.diff
$ sudo ./build_cmake.sh
On Windows or OS X, build with cmake like below.
$ git apply DNSSD/CMakeLists.diff
$ mkdir build
$ cd build
$ cmake ..
$ make -j8
For build without using cmake on Windows, build the included Visual C++ solution. On Linux/OS X, build with POCO_BASE environment variable set to the root of the POCO source tree.
$ export POCO_BASE=`pwd`
$ cd DNSSD
$ make -s -j8
$ make -s -j8 -C Default
See the doc directory for documentation and the samples directory for sample applications.
License
Boost Software License 1.0