summaryrefslogtreecommitdiff
path: root/lib9p/proto.gen
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-23 03:05:18 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-23 03:05:18 -0600
commitc275032964505d3ceecf3cc0ce21b059ede930dd (patch)
tree0cb858fd7b55f19eda2d027e628b580aab155342 /lib9p/proto.gen
parent1e49f931a86e54415ba36fc2bfe799d616936080 (diff)
parent82b733e4f8b3febc3b51c133a52fb62b54180b4b (diff)
Merge branch 'lukeshu/9p-gen-split'
Diffstat (limited to 'lib9p/proto.gen')
-rwxr-xr-xlib9p/proto.gen15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib9p/proto.gen b/lib9p/proto.gen
new file mode 100755
index 0000000..60f1347
--- /dev/null
+++ b/lib9p/proto.gen
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+# lib9p/proto.gen - Generate C marshalers/unmarshalers for .9p files
+# defining 9P protocol variants.
+#
+# Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com>
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
+import os.path
+import sys
+
+sys.path.insert(0, os.path.normpath(os.path.join(__file__, "..")))
+import protogen # pylint: disable=wrong-import-position
+
+if __name__ == "__main__":
+ protogen.main()