summaryrefslogtreecommitdiff
path: root/cmd/srv9p
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/srv9p')
-rw-r--r--cmd/srv9p/config/config.h2
-rw-r--r--cmd/srv9p/gnet.h2
-rw-r--r--cmd/srv9p/main.c6
-rwxr-xr-xcmd/srv9p/static.h.gen4
-rw-r--r--cmd/srv9p/static9p.c6
-rw-r--r--cmd/srv9p/static9p.h6
6 files changed, 24 insertions, 2 deletions
diff --git a/cmd/srv9p/config/config.h b/cmd/srv9p/config/config.h
index 0f6c37e..fa6faeb 100644
--- a/cmd/srv9p/config/config.h
+++ b/cmd/srv9p/config/config.h
@@ -1,4 +1,4 @@
-/* config.h - Compile-time configuration for srv9p
+/* srv9p/config/config.h - Compile-time configuration for srv9p
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-Licence-Identifier: AGPL-3.0-or-later
diff --git a/cmd/srv9p/gnet.h b/cmd/srv9p/gnet.h
index 549dd7b..341ccd2 100644
--- a/cmd/srv9p/gnet.h
+++ b/cmd/srv9p/gnet.h
@@ -1,4 +1,4 @@
-/* gnet.c - libnet implementation for libcr + GNU libc
+/* gnet.h - libnet implementation for libcr + GNU libc
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-Licence-Identifier: AGPL-3.0-or-later
diff --git a/cmd/srv9p/main.c b/cmd/srv9p/main.c
index 4170b5d..ae0e34e 100644
--- a/cmd/srv9p/main.c
+++ b/cmd/srv9p/main.c
@@ -1,3 +1,9 @@
+/* srv9p/main.c - Main entry point for test 9P server
+ *
+ * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
+ * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ */
+
#include <error.h>
#include <stdio.h>
diff --git a/cmd/srv9p/static.h.gen b/cmd/srv9p/static.h.gen
index 1c4d7b1..bb27e55 100755
--- a/cmd/srv9p/static.h.gen
+++ b/cmd/srv9p/static.h.gen
@@ -1,4 +1,8 @@
#!/bin/sh
+# static.h.gen - Generate C definitions for GNU `ld -r -b binary` files
+#
+# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
+# SPDX-Licence-Identifier: AGPL-3.0-or-later
nm --format=posix "$@" |
sed -n -E \
diff --git a/cmd/srv9p/static9p.c b/cmd/srv9p/static9p.c
index e20921d..f508ff1 100644
--- a/cmd/srv9p/static9p.c
+++ b/cmd/srv9p/static9p.c
@@ -1,3 +1,9 @@
+/* srv9p/static9p.c - Serve static files over 9P
+ *
+ * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
+ * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ */
+
#include <assert.h>
#include "static9p.h"
diff --git a/cmd/srv9p/static9p.h b/cmd/srv9p/static9p.h
index 2d77138..92f5909 100644
--- a/cmd/srv9p/static9p.h
+++ b/cmd/srv9p/static9p.h
@@ -1,3 +1,9 @@
+/* srv9p/static9p.h - Serve static files over 9P
+ *
+ * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
+ * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ */
+
#ifndef _STATIC9P_H_
#define _STATIC9P_H_