poco/DNSSD
Matej Kenda f24547cdcf enh(Poco): Mark deprecated functionality with C++ attributes and resolve internal usage of deprecated functions (#4551)
* 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>
2024-07-29 08:37:35 +02:00
..
Avahi 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
Bonjour enh(Poco): Mark deprecated functionality with C++ attributes and resolve internal usage of deprecated functions (#4551) 2024-07-29 08:37:35 +02:00
cmake 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
Default 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
doc 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
include/Poco/DNSSD 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
samples 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
src 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
CMakeLists.txt 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
dependencies 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
DNSSD_vs90.sln 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
DNSSD_vs90.vcproj 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
DNSSD_vs160.sln 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
DNSSD_vs160.vcxproj 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
DNSSD_vs160.vcxproj.filters 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
DNSSD_vs170.sln 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
DNSSD_vs170.vcxproj 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
DNSSD_vs170.vcxproj.filters 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
DNSSD_x64_vs90.sln 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
DNSSD.progen 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
LICENSE 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
Makefile 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00
README.md 2208 merge dnssd (#4479) 2024-04-03 22:38:56 +02:00

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