Skip to content

Commit

Permalink
Logger: Add authorship, copyright, and license statements
Browse files Browse the repository at this point in the history
  • Loading branch information
solardiz committed Feb 25, 2024
1 parent 9f0de3a commit 3edafb6
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Copyright (c) 2015-2023 Adam 'pi3' Zabrocki
Copyright (c) 2020-2022 Mariusz Zaborski
Copyright (c) 2020-2024 Solar Designer

src/modules/net/net.*
src/modules/net/net.*, logger
Copyright (c) 2022 Binarly
Copyright (c) 2024 Solar Designer

Expand Down
7 changes: 7 additions & 0 deletions logger/keygen.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Generate a public/secret keypair.
*
* Written in 2022 by Solar Designer
* Copyright (c) 2022 Binarly
*/

#include <stdio.h>

#include "hydrogen/hydrogen.c"
Expand Down
8 changes: 8 additions & 0 deletions logger/logctl.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Process an LKRG logger output file. This program currently derives each
* event's ISO timestamp from several recorded relative timestamps.
*
* Written in 2022 by Solar Designer
* Copyright (c) 2022 Binarly
*/

#include <time.h>
#include <stdio.h>

Expand Down
7 changes: 7 additions & 0 deletions logger/misc.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Miscellaneous system and library call wrappers.
*
* Initially written for popa3d, reused for LKRG logger with various changes
* Copyright (c) 1998-2022 Solar Designer
*/

#include <limits.h>
#include <unistd.h>
#include <errno.h>
Expand Down
7 changes: 7 additions & 0 deletions logger/session.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Process one client session (one TCP connection).
*
* Written in 2022 by Solar Designer
* Copyright (c) 2022 Binarly
*/

#include <stdlib.h> /* for getenv() */
#include <stdio.h>
#include <unistd.h>
Expand Down
3 changes: 3 additions & 0 deletions logger/standalone.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
/*
* Standalone TCP server: accepts connections, checks the anti-flood limits,
* logs and starts the actual sessions.
*
* Initially written for popa3d, reused for LKRG logger with minor changes
* Copyright (c) 1999-2022 Solar Designer
*/

#include <stdio.h>
Expand Down

0 comments on commit 3edafb6

Please sign in to comment.