mirror of
https://github.com/maxgoedjen/secretive.git
synced 2026-09-09 18:09:04 +02:00
Add host lookup xpc service (#826)
* Add host lookup xpc service * Remove restriction that snuck in * Test fixes
This commit is contained in:
@@ -54,9 +54,11 @@ class AppDelegate: NSObject, NSApplicationDelegate {
|
||||
Task {
|
||||
do {
|
||||
let inputParser = try await XPCAgentInputParser()
|
||||
let hostsReader = try? await XPCHostsfileReader()
|
||||
let hosts = try? await hostsReader?.read()
|
||||
for await message in session.messages {
|
||||
let request = try await inputParser.parse(data: message)
|
||||
let agentResponse = await agent.handle(request: request, provenance: session.provenance)
|
||||
let agentResponse = await agent.handle(request: request, provenance: session.provenance, hosts: hosts)
|
||||
try session.write(agentResponse)
|
||||
}
|
||||
} catch {
|
||||
|
||||
Reference in New Issue
Block a user