Add increment options and slight cleanup

This commit is contained in:
Owen 2026-01-12 20:48:18 -08:00
parent 0ccd5714f9
commit eba25fcc4d
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
14 changed files with 92 additions and 53 deletions

View file

@ -50,10 +50,14 @@ export async function sendToExitNode(
);
}
return sendToClient(remoteExitNode.remoteExitNodeId, {
type: request.remoteType,
data: request.data
});
return sendToClient(
remoteExitNode.remoteExitNodeId,
{
type: request.remoteType,
data: request.data
},
{ incrementConfigVersion: true }
);
} else {
let hostname = exitNode.reachableAt;