summaryrefslogtreecommitdiffstats
path: root/mDNSResponder (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove junk folders.Chris Johns2019-06-122-0/+0
|
* mDNSResponder: Fix for update to v765.1.2Sebastian Huber2018-10-161-0/+4
| | | | | | | | In the update to v765.1.2 the mDNS_Init() changed the initialization of m->AutoTargetServices from 1 to 0. The motivation for this change is unclear. This change prevents at least the mDNS hostname lookups. Revert this change and initialize m->AutoTargetServices to 1 like it was before the update.
* mDNSResponder: Fix use of uninitialized variablesSebastian Huber2018-10-161-0/+9
|
* mDNSResponder: Do not use SO_RECV_ANYIF socket optSebastian Huber2018-10-021-0/+2
| | | | This socket option is not supported by FreeBSD.
* mDNSResponder: Update to v878.30.4Sebastian Huber2018-09-2010-355/+782
| | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.30.4.tar.gz Close #3522.
* mDNSResponder: Update to v878.20.3Sebastian Huber2018-09-203-86/+269
| | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.20.3.tar.gz Update #3522.
* mDNSResponder: Update to v878.1.1Sebastian Huber2018-09-20164-5525/+28521
| | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.1.1.tar.gz Update #3522.
* mDNSResponder: Update to v765.50.9Sebastian Huber2018-09-2014-109/+133
| | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-765.50.9.tar.gz Update #3522.
* mDNSResponder: Update to v765.30.11Sebastian Huber2018-09-2011-121/+112
| | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-765.30.11.tar.gz Update #3522.
* mDNSResponder: Update to v765.20.4Sebastian Huber2018-09-205-14/+25
| | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-765.20.4.tar.gz Update #3522.
* mDNSResponder: Update to v765.1.2Sebastian Huber2018-09-20110-7838/+11487
| | | | | | | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-765.1.2.tar.gz Move mDNS_StartResolveService() and mDNS_StopResolveService() to an RTEMS-specific file (rtemsbsd/mdns/mDNSResolveService.c) using the v576.30.4 implementation. Apple removed these functions without explanation. Update #3522.
* mDNSResponder: Update to v625.41.2Sebastian Huber2018-09-20120-7537/+3681
| | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-625.41.2.tar.gz Update #3522.
* mDNSResponder: Update to v576.30.4Sebastian Huber2018-09-2025-208/+446
| | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-576.30.4.tar.gz Update #3522.
* mDNSResponder: Update to v567Sebastian Huber2018-09-2024-171/+308
| | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-567.tar.gz Update #3522.
* mDNSResponder: Update to v561.1.1Sebastian Huber2018-09-2012-114/+138
| | | | | | | | The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-561.1.1.tar.gz Update #3522.
* mDNSResponder: Fix gAllocatedEventFDs allocationSebastian Huber2018-09-201-1/+1
|
* mDNSResponder: Honour file descriptor maximumSebastian Huber2018-09-191-0/+30
| | | | | Dynamically allocate a big enough file descriptor set for select(). A better solution would be to use kqueue() instead of select().
* mDNS: Avoid uninitialized memorySebastian Huber2014-11-042-3/+3
| | | | Use calloc() instead of malloc().
* mDNS: Use mutex for mDNSPosix platformSebastian Huber2014-01-302-0/+23
|
* mDNS: mDNSShared/mDNSDebug.cSebastian Huber2014-01-301-0/+4
| | | | Avoid reference to ProgramName.
* mDNS: mDNSShared/dnssd_clientshim.cSebastian Huber2014-01-301-1/+11
| | | | Fix typos. Include missing header files.
* mDNS: AnonInfoAnswersQuestion: Fix stack usageSebastian Huber2014-01-301-5/+10
| | | | | | | The mDNSexport is normally defined to be empty, thus mDNSStorage is a huge stack variable (roughly 50KiB) with random data. Asuming a global mDNSStorage variable in the mDNSCore makes no sense.
* mDNS: ImportSebastian Huber2014-01-30578-0/+195006
The sources can be obtained via: http://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-544.tar.gz