Sample CodemacOSReviewed 2026-07-21View on Apple Developer

Filtering Network Traffic

At a glance

Item Summary
Purpose Use the Network Extension framework to allow or deny network connections.
App architecture A Swift sample with the source-visible chain AppDelegateViewControllerFilterDataProviderNetworkExtension / Network APIs.
Main patterns Protocol-oriented abstraction, Delegate or data-source callbacks
Project style 5 scanned source file(s) across Swift, organized around ranked entry, type, and file boundaries.

Project structure

Source bundle/
├── SimpleFirewallExtension/
│   ├── main.swift
│   ├── IPCConnection.swift
│   ├── FilterDataProvider.swift
│   └── Info.plist
├── SimpleFirewall/
│   ├── AppDelegate.swift
│   ├── ViewController.swift
│   ├── Base.lproj/
│   │   └── Main.storyboard
│   ├── Info.plist
│   └── SimpleFirewall.entitlements
├── Configuration/
│   └── SampleCode.xcconfig
└── SimpleFirewall.xcodeproj/
    ├── .xcodesamplecode.plist
    └── project.pbxproj

Structure observations

  • Architecturally prominent files are ranked from entry points and role-named declarations; resource-only paths are omitted.
  • Primary languages: Swift.
  • The verified tree contains 8 project/configuration file(s) and 8 source declaration(s).

Overall architecture

Reference code

SimpleFirewall/AppDelegate.swift:10 — architecture anchor

@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {

}

Interpretation

The arrows summarize the source-visible entry, role-named types or folders, and framework direction; when nodes come from structural folders, the sequence is a high-level interpretation rather than proof that every adjacent node calls the next. Ownership is claimed only where the next section cites a stored property or assignment. The diagram is intentionally limited to the dominant path into Network Extension.

Ownership and state

Ownership evidence

SimpleFirewallExtension/IPCConnection.swift:34 — stored dependency or nearest verified ownership anchor

class IPCConnection: NSObject {
    // ...
    var listener: NSXPCListener?
    // ...
}
Owner Object or state Relationship Mutation authority
IPCConnection NSXPCListener (listener) stores or receives App/module collaborators
IPCConnection NSXPCConnection (currentConnection) stores or receives App/module collaborators
IPCConnection AppCommunication (delegate) holds a non-owning reference The referenced object’s lifecycle is owned elsewhere
IPCConnection IPCConnection (shared) creates and retains Initialized by the owner; the binding is immutable

Composition arrows indicate a source-visible construction expression or locally owned value state; aggregation means the owner stores or receives a dependency without proving exclusive lifetime ownership.

Class and protocol design

SimpleFirewallExtension/IPCConnection.swift:13 — representative type boundary

@objc protocol ProviderCommunication {

    func register(_ completionHandler: @escaping (Bool) -> Void)
}
Type Responsibility Depends on or conforms to
AppDelegate Receives callback-driven events NSObject, NSApplicationDelegate
ViewController View lifecycle, callbacks, and feature coordination NSViewController
FilterDataProvider Supplies a capability or framework resource NEFilterDataProvider
ProviderCommunication Defines a capability or collaboration contract Concrete collaborators/imported frameworks
AppCommunication Defines a capability or collaboration contract Concrete collaborators/imported frameworks
FlowInfoKey Defines a closed set of feature states or choices String
IPCConnection Owns feature behavior and collaborator lifecycle NSObject
Status Defines a closed set of feature states or choices Concrete collaborators/imported frameworks

The source explicitly defines local protocol relationships: ViewControllerAppCommunication, IPCConnectionProviderCommunication.

Access control

Symbol Access Verified effect Likely rationale
extensionMachServiceName (SimpleFirewallExtension/IPCConnection.swift:46) private Use is restricted to the lexical declaration and same-file extensions allowed by Swift. Inference: hide an implementation step that is not part of the collaboration surface.
main (SimpleFirewallExtension/main.swift:8) implicit internal No explicit modifier means the Swift declaration is internal to the module. Inference: app-target collaboration needs no exported library surface.

Reference code

SimpleFirewallExtension/IPCConnection.swift:46 — representative boundary

    private func extensionMachServiceName(from bundle: Bundle) -> String {
        // ...
    }

Swift declarations without a modifier are internal; explicit private, fileprivate, private(set), public, or open entries above are interpreted by language semantics. Objective-C/C samples instead rely on header and implementation boundaries, which are not equivalent to Swift lexical privacy.

Logic ownership and placement

Logic Owning type or file Placement rationale
View lifecycle, callbacks, and feature coordination ViewController The source’s Controller suffix makes this role explicit.
Receives callback-driven events AppDelegate The source’s Delegate suffix makes this role explicit.
Supplies a capability or framework resource FilterDataProvider The source’s Provider suffix makes this role explicit.

Design patterns

Pattern Source evidence Purpose or tradeoff
Protocol-oriented abstraction SimpleFirewall/ViewController.swift:323 A local protocol and concrete conformance create an explicit capability boundary.
Delegate or data-source callbacks SimpleFirewall/AppDelegate.swift:11 Callback protocols invert event delivery back into the sample’s owner.

Naming conventions

  • Types: Controller: ViewController; Delegate: AppDelegate; Provider: FilterDataProvider.
  • Protocols: ProviderCommunication, AppCommunication.
  • Methods: register, promptUser, extensionMachServiceName, startListener, listener, viewWillAppear, viewWillDisappear, updateStatus.
  • Files: SimpleFirewall/AppDelegate.swift, SimpleFirewallExtension/IPCConnection.swift, SimpleFirewall/ViewController.swift, SimpleFirewallExtension/FilterDataProvider.swift.

Architecture takeaways

  • AppDelegate is the main source-visible entry or composition anchor for this sample.
  • Framework work reaches NetworkExtension, Cocoa, Network, SystemExtensions through a deliberately small high-level chain; the detailed API graph remains inside the cited implementation files.
  • Stored-property evidence identifies lifecycle collaboration; it does not by itself prove exclusive object ownership.
  • Access-control conclusions separate verified language visibility from the likely design rationale.
  • Local protocol relationships provide an explicit substitution boundary.

Source map

Source file Relevant symbols
SimpleFirewallExtension/main.swift Feature implementation
SimpleFirewall/AppDelegate.swift AppDelegate
SimpleFirewallExtension/IPCConnection.swift ProviderCommunication, AppCommunication, FlowInfoKey, IPCConnection
SimpleFirewall/ViewController.swift ViewController, Status
SimpleFirewallExtension/FilterDataProvider.swift FilterDataProvider