pilotprotocol 1.10.0__tar.gz → 1.10.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pilotprotocol-1.10.0/pilotprotocol.egg-info → pilotprotocol-1.10.2}/PKG-INFO +1 -1
- pilotprotocol-1.10.2/pilotprotocol/bin/.pilot-version +1 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol/bin/libpilot.h +22 -0
- pilotprotocol-1.10.2/pilotprotocol/bin/libpilot.so +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol/bin/pilot-daemon +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol/bin/pilot-gateway +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol/bin/pilot-updater +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol/bin/pilotctl +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2/pilotprotocol.egg-info}/PKG-INFO +1 -1
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pyproject.toml +1 -1
- pilotprotocol-1.10.0/pilotprotocol/bin/.pilot-version +0 -1
- pilotprotocol-1.10.0/pilotprotocol/bin/libpilot.so +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/CHANGELOG.md +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/LICENSE +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/MANIFEST.in +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/README.md +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol/__init__.py +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol/_runtime.py +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol/cli.py +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol/client.py +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol/py.typed +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol.egg-info/SOURCES.txt +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol.egg-info/dependency_links.txt +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol.egg-info/entry_points.txt +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol.egg-info/requires.txt +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/pilotprotocol.egg-info/top_level.txt +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/setup.cfg +0 -0
- {pilotprotocol-1.10.0 → pilotprotocol-1.10.2}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pilotprotocol
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.2
|
|
4
4
|
Summary: Python SDK for Pilot Protocol - the network stack for AI agents
|
|
5
5
|
Author-email: Alexandru Godoroja <alex@pilotprotocol.network>
|
|
6
6
|
Maintainer-email: Alexandru Godoroja <alex@pilotprotocol.network>, Teodor Calin <teodor@pilotprotocol.network>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.10.2
|
|
@@ -28,6 +28,13 @@ extern const char *_GoStringPtr(_GoString_ s);
|
|
|
28
28
|
|
|
29
29
|
#line 1 "cgo-generated-wrapper"
|
|
30
30
|
|
|
31
|
+
#line 22 "embedded.go"
|
|
32
|
+
|
|
33
|
+
#include <stdlib.h>
|
|
34
|
+
#include <stdint.h>
|
|
35
|
+
|
|
36
|
+
#line 1 "cgo-generated-wrapper"
|
|
37
|
+
|
|
31
38
|
|
|
32
39
|
/* End of preamble from import "C" comments. */
|
|
33
40
|
|
|
@@ -99,6 +106,7 @@ extern struct PilotConnect_return PilotConnect(char* socketPath);
|
|
|
99
106
|
extern char* PilotClose(uint64_t h);
|
|
100
107
|
extern char* PilotInfo(uint64_t h);
|
|
101
108
|
extern char* PilotHandshake(uint64_t h, uint32_t nodeID, char* justification);
|
|
109
|
+
extern char* PilotWaitForTrust(uint64_t h, uint32_t nodeID, uint32_t timeoutMs);
|
|
102
110
|
extern char* PilotApproveHandshake(uint64_t h, uint32_t nodeID);
|
|
103
111
|
extern char* PilotRejectHandshake(uint64_t h, uint32_t nodeID, char* reason);
|
|
104
112
|
extern char* PilotPendingHandshakes(uint64_t h);
|
|
@@ -181,6 +189,20 @@ extern char* PilotPolicySet(uint64_t h, uint16_t networkID, char* policyJSON);
|
|
|
181
189
|
extern char* PilotMemberTagsGet(uint64_t h, uint16_t networkID, uint32_t nodeID);
|
|
182
190
|
extern char* PilotMemberTagsSet(uint64_t h, uint16_t networkID, uint32_t nodeID, char* tagsJSON);
|
|
183
191
|
|
|
192
|
+
// Boot the embedded daemon. configJSON is a JSON-encoded embeddedConfig.
|
|
193
|
+
// Returns JSON: on success {"address","node_id","public_key","socket"},
|
|
194
|
+
// on failure {"error": "..."}.
|
|
195
|
+
//
|
|
196
|
+
// Idempotent only in the trivial sense — calling twice without Stop
|
|
197
|
+
// returns an error.
|
|
198
|
+
//
|
|
199
|
+
extern char* PilotEmbeddedStart(char* configJSON);
|
|
200
|
+
|
|
201
|
+
// Tear down the embedded daemon and all plugins. Safe to call when
|
|
202
|
+
// not started — returns {"status":"not_started"}.
|
|
203
|
+
//
|
|
204
|
+
extern char* PilotEmbeddedStop(void);
|
|
205
|
+
|
|
184
206
|
#ifdef __cplusplus
|
|
185
207
|
}
|
|
186
208
|
#endif
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pilotprotocol
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.2
|
|
4
4
|
Summary: Python SDK for Pilot Protocol - the network stack for AI agents
|
|
5
5
|
Author-email: Alexandru Godoroja <alex@pilotprotocol.network>
|
|
6
6
|
Maintainer-email: Alexandru Godoroja <alex@pilotprotocol.network>, Teodor Calin <teodor@pilotprotocol.network>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.10.0
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|