diff --git a/proj/intercept/intercept b/proj/intercept/intercept index 587791c..ffe48b0 100755 --- a/proj/intercept/intercept +++ b/proj/intercept/intercept @@ -1,6 +1,10 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# File: intercept +# Author: Lorenz Stechauner +# Lorenz Stechauner + import argparse import subprocess import os diff --git a/proj/intercept/src/intercept.c b/proj/intercept/src/intercept.c index 6d70f82..48d5402 100644 --- a/proj/intercept/src/intercept.c +++ b/proj/intercept/src/intercept.c @@ -1,4 +1,10 @@ +/** + * File: intercept.c + * Author: Lorenz Stechauner + * Lorenz Stechauner + */ + #define _GNU_SOURCE #include diff --git a/proj/server/src/intercept/__init__.py b/proj/server/src/intercept/__init__.py index d21ff08..3beb451 100644 --- a/proj/server/src/intercept/__init__.py +++ b/proj/server/src/intercept/__init__.py @@ -1,6 +1,10 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# File: intercept/__init__.py +# Author: Lorenz Stechauner +# Lorenz Stechauner + from __future__ import annotations from typing import Optional, TypedDict, NamedTuple, NotRequired, BinaryIO from socketserver import UnixStreamServer, StreamRequestHandler, ThreadingMixIn diff --git a/proj/server/src/intercept/standard.py b/proj/server/src/intercept/standard.py index dfef42b..e9a0d65 100644 --- a/proj/server/src/intercept/standard.py +++ b/proj/server/src/intercept/standard.py @@ -1,6 +1,10 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# File: intercept/standard.py +# Author: Lorenz Stechauner +# Lorenz Stechauner + from __future__ import annotations from intercept import * diff --git a/proj/server/src/test-interrupts b/proj/server/src/test-interrupts index 8beeebc..732580d 100755 --- a/proj/server/src/test-interrupts +++ b/proj/server/src/test-interrupts @@ -1,6 +1,10 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# File: test-interrupts +# Author: Lorenz Stechauner +# Lorenz Stechauner + import os import sys import argparse diff --git a/proj/server/src/test-memory b/proj/server/src/test-memory index 653846a..de63f10 100755 --- a/proj/server/src/test-memory +++ b/proj/server/src/test-memory @@ -1,6 +1,10 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# File: test-memory +# Author: Lorenz Stechauner +# Lorenz Stechauner + import argparse import subprocess import os diff --git a/proj/server/src/test-return-values b/proj/server/src/test-return-values index 33415d2..35ff6ab 100755 --- a/proj/server/src/test-return-values +++ b/proj/server/src/test-return-values @@ -1,6 +1,10 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# File: test-return-values +# Author: Lorenz Stechauner +# Lorenz Stechauner + import os import sys import argparse