Print this page
7120 mDNS resync was not wsdiff safe


1794     // Be sure to deallocate the DNSServiceRef when you're finished
1795     if (client   ) DNSServiceRefDeallocate(client   );
1796     if (client_pa) DNSServiceRefDeallocate(client_pa);
1797     return 0;
1798 
1799 Fail:
1800     if (operation == 'H') print_usage(a0,1);
1801     else print_usage(a0,0);
1802     return 0;
1803 
1804 }
1805 
1806 // Note: The C preprocessor stringify operator ('#') makes a string from its argument, without macro expansion
1807 // e.g. If "version" is #define'd to be "4", then STRINGIFY_AWE(version) will return the string "version", not "4"
1808 // To expand "version" to its value before making the string, use STRINGIFY(version) instead
1809 #define STRINGIFY_ARGUMENT_WITHOUT_EXPANSION(s) # s
1810 #define STRINGIFY(s) STRINGIFY_ARGUMENT_WITHOUT_EXPANSION(s)
1811 
1812 // NOT static -- otherwise the compiler may optimize it out
1813 // The "@(#) " pattern is a special prefix the "what" command looks for

1814 const char VersionString_SCCS[] = "@(#) dns-sd " STRINGIFY(mDNSResponderVersion) " (" __DATE__ " " __TIME__ ")";



1815 
1816 #if _BUILDING_XCODE_PROJECT_
1817 // If the process crashes, then this string will be magically included in the automatically-generated crash log
1818 const char *__crashreporter_info__ = VersionString_SCCS + 5;
1819 asm (".desc ___crashreporter_info__, 0x10");
1820 #endif


1794     // Be sure to deallocate the DNSServiceRef when you're finished
1795     if (client   ) DNSServiceRefDeallocate(client   );
1796     if (client_pa) DNSServiceRefDeallocate(client_pa);
1797     return 0;
1798 
1799 Fail:
1800     if (operation == 'H') print_usage(a0,1);
1801     else print_usage(a0,0);
1802     return 0;
1803 
1804 }
1805 
1806 // Note: The C preprocessor stringify operator ('#') makes a string from its argument, without macro expansion
1807 // e.g. If "version" is #define'd to be "4", then STRINGIFY_AWE(version) will return the string "version", not "4"
1808 // To expand "version" to its value before making the string, use STRINGIFY(version) instead
1809 #define STRINGIFY_ARGUMENT_WITHOUT_EXPANSION(s) # s
1810 #define STRINGIFY(s) STRINGIFY_ARGUMENT_WITHOUT_EXPANSION(s)
1811 
1812 // NOT static -- otherwise the compiler may optimize it out
1813 // The "@(#) " pattern is a special prefix the "what" command looks for
1814 #ifndef MDNS_VERSIONSTR_NODTS
1815 const char VersionString_SCCS[] = "@(#) dns-sd " STRINGIFY(mDNSResponderVersion) " (" __DATE__ " " __TIME__ ")";
1816 #else
1817 const char VersionString_SCCS[] = "@(#) dns-sd " STRINGIFY(mDNSResponderVersion);
1818 #endif
1819 
1820 #if _BUILDING_XCODE_PROJECT_
1821 // If the process crashes, then this string will be magically included in the automatically-generated crash log
1822 const char *__crashreporter_info__ = VersionString_SCCS + 5;
1823 asm (".desc ___crashreporter_info__, 0x10");
1824 #endif