annotate main/NetworkPermissionTester.h @ 2265:d33dff02b39b sandbox-notarize

Work on sandboxing (possibly) and using the hardened runtime for notarization. Supply appropriate bundle ID for helpers as well as main application, and request inherited sandbox entitlements. Currently works with sandboxing (apparently) but not yet with the hardened runtime, where we can't load plugins signed by third parties even with the com.apple.security.cs.disable-library-validation entitlement because their team IDs don't match the host. Possibly that exception is supposed to be requested some other way?
author Chris Cannam
date Thu, 25 Apr 2019 16:46:02 +0100
parents 3f6c18fcc075
children
rev   line source
Chris@663 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@663 2
Chris@663 3 /*
Chris@663 4 Sonic Visualiser
Chris@663 5 An audio file viewer and annotation editor.
Chris@663 6 Centre for Digital Music, Queen Mary, University of London.
Chris@663 7
Chris@663 8 This program is free software; you can redistribute it and/or
Chris@663 9 modify it under the terms of the GNU General Public License as
Chris@663 10 published by the Free Software Foundation; either version 2 of the
Chris@663 11 License, or (at your option) any later version. See the file
Chris@663 12 COPYING included with this distribution for more information.
Chris@663 13 */
Chris@663 14
Chris@663 15 #ifndef NETWORK_PERMISSION_TESTER_H
Chris@663 16 #define NETWORK_PERMISSION_TESTER_H
Chris@663 17
Chris@663 18 class NetworkPermissionTester
Chris@663 19 {
Chris@663 20 public:
Chris@1613 21 NetworkPermissionTester(bool withOSCSupport) : m_withOSC(withOSCSupport) { }
Chris@663 22 bool havePermission();
Chris@1613 23
Chris@1613 24 private:
Chris@1613 25 bool m_withOSC;
Chris@663 26 };
Chris@663 27
Chris@663 28 #endif
Chris@663 29
Chris@663 30