From dc40f74c13ce353b3c472c945fc74e8b64b54251 Mon Sep 17 00:00:00 2001 From: Soner Tari Date: Wed, 6 Apr 2022 22:35:26 +0300 Subject: [PATCH] Update copyright year to 2022 --- LICENSE | 2 +- README.md | 2 +- src/filter.c | 2 +- src/filter.h | 2 +- src/main.c | 4 ++-- src/opts.c | 2 +- src/opts.h | 2 +- src/privsep.c | 2 +- src/protoautossl.c | 2 +- src/protoautossl.h | 2 +- src/protohttp.c | 2 +- src/protohttp.h | 2 +- src/protopassthrough.c | 2 +- src/protopassthrough.h | 2 +- src/protopop3.c | 2 +- src/protopop3.h | 2 +- src/protosmtp.c | 2 +- src/protosmtp.h | 2 +- src/protossl.c | 2 +- src/protossl.h | 2 +- src/prototcp.c | 2 +- src/prototcp.h | 2 +- src/pxyconn.c | 2 +- src/pxyconn.h | 2 +- src/pxythr.c | 2 +- src/pxythr.h | 2 +- src/pxythrmgr.c | 2 +- src/pxythrmgr.h | 2 +- src/sslproxy.1 | 2 +- src/sslproxy.conf.5 | 2 +- tests/check/filter.t.c | 2 +- tests/check/filterstruct.t.c | 2 +- tests/check/opts.t.c | 2 +- tests/check/proto.t.c | 2 +- tests/check/util.t.c | 2 +- tests/testproxy/lp/main.c | 2 +- tests/testproxy/lp/opts.c | 2 +- tests/testproxy/lp/prototcp.c | 2 +- tests/testproxy/lp/prototcp.h | 2 +- tests/testproxy/lp/pxyconn.c | 2 +- tests/testproxy/lp/pxyconn.h | 2 +- tests/testproxy/lp/pxythr.c | 2 +- tests/testproxy/lp/pxythr.h | 2 +- tests/testproxy/lp/pxythrmgr.c | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/LICENSE b/LICENSE index 3109ee4..44e9ba4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 2-Clause License -Copyright (c) 2017-2021, Soner Tari. +Copyright (c) 2017-2022, Soner Tari. Copyright (c) 2009-2019, Daniel Roethlisberger and contributors. All rights reserved. diff --git a/README.md b/README.md index f3ec8c1..b8f1ea8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # SSLproxy - transparent SSL/TLS proxy for decrypting and diverting network traffic to other programs for deep SSL inspection [![Build Status](https://travis-ci.com/sonertari/SSLproxy.svg?branch=master)](https://app.travis-ci.com/github/sonertari/SSLproxy) -Copyright (C) 2017-2021, [Soner Tari](mailto:sonertari@gmail.com). +Copyright (C) 2017-2022, [Soner Tari](mailto:sonertari@gmail.com). https://github.com/sonertari/SSLproxy Copyright (C) 2009-2019, [Daniel Roethlisberger](//daniel.roe.ch/). diff --git a/src/filter.c b/src/filter.c index 5ef39ac..2477c54 100644 --- a/src/filter.c +++ b/src/filter.c @@ -1,7 +1,7 @@ /*- * SSLproxy * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/filter.h b/src/filter.h index d24f459..d577e1c 100644 --- a/src/filter.h +++ b/src/filter.h @@ -1,7 +1,7 @@ /*- * SSLproxy * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/main.c b/src/main.c index fd8c017..98ec74f 100644 --- a/src/main.c +++ b/src/main.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -99,7 +99,7 @@ main_version(void) fprintf(stderr, "---------------------------------------" "---------------------------------------\n"); } - fprintf(stderr, "Copyright (c) 2017-2021, Soner Tari \n"); + fprintf(stderr, "Copyright (c) 2017-2022, Soner Tari \n"); fprintf(stderr, "https://github.com/sonertari/SSLproxy\n"); fprintf(stderr, "Copyright (c) 2009-2019, " "Daniel Roethlisberger \n"); diff --git a/src/opts.c b/src/opts.c index f7b8725..d2d425a 100644 --- a/src/opts.c +++ b/src/opts.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/opts.h b/src/opts.h index 8f890c3..5a30a8a 100644 --- a/src/opts.h +++ b/src/opts.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/privsep.c b/src/privsep.c index 840d8fb..0569a5e 100644 --- a/src/privsep.c +++ b/src/privsep.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protoautossl.c b/src/protoautossl.c index cd07fe2..94d221a 100644 --- a/src/protoautossl.c +++ b/src/protoautossl.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protoautossl.h b/src/protoautossl.h index ca29f5d..b589d6d 100644 --- a/src/protoautossl.h +++ b/src/protoautossl.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protohttp.c b/src/protohttp.c index 42a25e1..b5442ef 100644 --- a/src/protohttp.c +++ b/src/protohttp.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protohttp.h b/src/protohttp.h index 17831c6..52ff29b 100644 --- a/src/protohttp.h +++ b/src/protohttp.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protopassthrough.c b/src/protopassthrough.c index eaee7a8..1858edb 100644 --- a/src/protopassthrough.c +++ b/src/protopassthrough.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protopassthrough.h b/src/protopassthrough.h index 94f5ad6..c3311ee 100644 --- a/src/protopassthrough.h +++ b/src/protopassthrough.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protopop3.c b/src/protopop3.c index b2ee22b..15fdd93 100644 --- a/src/protopop3.c +++ b/src/protopop3.c @@ -1,7 +1,7 @@ /*- * SSLproxy - transparent SSL/TLS proxy * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protopop3.h b/src/protopop3.h index b6ce1a8..25a36dd 100644 --- a/src/protopop3.h +++ b/src/protopop3.h @@ -1,7 +1,7 @@ /*- * SSLproxy - transparent SSL/TLS proxy * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protosmtp.c b/src/protosmtp.c index 6515c68..0350207 100644 --- a/src/protosmtp.c +++ b/src/protosmtp.c @@ -1,7 +1,7 @@ /*- * SSLproxy - transparent SSL/TLS proxy * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protosmtp.h b/src/protosmtp.h index 7997e16..3feb0cf 100644 --- a/src/protosmtp.h +++ b/src/protosmtp.h @@ -1,7 +1,7 @@ /*- * SSLproxy - transparent SSL/TLS proxy * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protossl.c b/src/protossl.c index c216563..6893c24 100644 --- a/src/protossl.c +++ b/src/protossl.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protossl.h b/src/protossl.h index fcf411e..93a259a 100644 --- a/src/protossl.h +++ b/src/protossl.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/prototcp.c b/src/prototcp.c index 40e3691..cef20f0 100644 --- a/src/prototcp.c +++ b/src/prototcp.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/prototcp.h b/src/prototcp.h index b08a031..68e409c 100644 --- a/src/prototcp.h +++ b/src/prototcp.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxyconn.c b/src/pxyconn.c index 9f06dc2..f5740e2 100644 --- a/src/pxyconn.c +++ b/src/pxyconn.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxyconn.h b/src/pxyconn.h index fbb17ad..d5e0e2d 100644 --- a/src/pxyconn.h +++ b/src/pxyconn.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxythr.c b/src/pxythr.c index 292bce5..00b447a 100644 --- a/src/pxythr.c +++ b/src/pxythr.c @@ -2,7 +2,7 @@ * SSLsplit - transparent SSL/TLS interception * https://www.roe.ch/SSLsplit * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxythr.h b/src/pxythr.h index f774299..71cc465 100644 --- a/src/pxythr.h +++ b/src/pxythr.h @@ -2,7 +2,7 @@ * SSLsplit - transparent SSL/TLS interception * https://www.roe.ch/SSLsplit * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxythrmgr.c b/src/pxythrmgr.c index 65b0a74..a977735 100644 --- a/src/pxythrmgr.c +++ b/src/pxythrmgr.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxythrmgr.h b/src/pxythrmgr.h index 7c9904d..a143b35 100644 --- a/src/pxythrmgr.h +++ b/src/pxythrmgr.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/sslproxy.1 b/src/sslproxy.1 index 96a9353..65bbe7c 100644 --- a/src/sslproxy.1 +++ b/src/sslproxy.1 @@ -4,7 +4,7 @@ .\" https://github.com/sonertari/SSLproxy .\" .\" Copyright (c) 2009-2019, Daniel Roethlisberger . -.\" Copyright (c) 2017-2021, Soner Tari . +.\" Copyright (c) 2017-2022, Soner Tari . .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without diff --git a/src/sslproxy.conf.5 b/src/sslproxy.conf.5 index 6b25a12..f5f574b 100644 --- a/src/sslproxy.conf.5 +++ b/src/sslproxy.conf.5 @@ -3,7 +3,7 @@ .\" https://github.com/sonertari/SSLproxy .\" .\" Copyright (c) 2009-2019, Daniel Roethlisberger . -.\" Copyright (c) 2017-2021, Soner Tari . +.\" Copyright (c) 2017-2022, Soner Tari . .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without diff --git a/tests/check/filter.t.c b/tests/check/filter.t.c index b44b10e..4c64637 100644 --- a/tests/check/filter.t.c +++ b/tests/check/filter.t.c @@ -1,7 +1,7 @@ /*- * SSLproxy * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/check/filterstruct.t.c b/tests/check/filterstruct.t.c index 9ec254c..47ef6f2 100644 --- a/tests/check/filterstruct.t.c +++ b/tests/check/filterstruct.t.c @@ -1,7 +1,7 @@ /*- * SSLproxy * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/check/opts.t.c b/tests/check/opts.t.c index 5ec4129..0ea2810 100644 --- a/tests/check/opts.t.c +++ b/tests/check/opts.t.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/check/proto.t.c b/tests/check/proto.t.c index e0399ed..58884f5 100644 --- a/tests/check/proto.t.c +++ b/tests/check/proto.t.c @@ -2,7 +2,7 @@ * SSLsplit - transparent SSL/TLS interception * https://www.roe.ch/SSLsplit * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/check/util.t.c b/tests/check/util.t.c index 9268d07..309c920 100644 --- a/tests/check/util.t.c +++ b/tests/check/util.t.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/main.c b/tests/testproxy/lp/main.c index ce20aa2..f13b9f9 100644 --- a/tests/testproxy/lp/main.c +++ b/tests/testproxy/lp/main.c @@ -88,7 +88,7 @@ main_version(void) fprintf(stderr, "---------------------------------------" "---------------------------------------\n"); } - fprintf(stderr, "Copyright (c) 2017-2021, Soner Tari \n"); + fprintf(stderr, "Copyright (c) 2017-2022, Soner Tari \n"); fprintf(stderr, "https://github.com/sonertari/SSLproxy\n"); fprintf(stderr, "Copyright (c) 2009-2019, " "Daniel Roethlisberger \n"); diff --git a/tests/testproxy/lp/opts.c b/tests/testproxy/lp/opts.c index 01d9f7f..6596a17 100644 --- a/tests/testproxy/lp/opts.c +++ b/tests/testproxy/lp/opts.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/prototcp.c b/tests/testproxy/lp/prototcp.c index 162f1c9..38e851c 100644 --- a/tests/testproxy/lp/prototcp.c +++ b/tests/testproxy/lp/prototcp.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/prototcp.h b/tests/testproxy/lp/prototcp.h index 7827793..1e9d9ed 100644 --- a/tests/testproxy/lp/prototcp.h +++ b/tests/testproxy/lp/prototcp.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/pxyconn.c b/tests/testproxy/lp/pxyconn.c index 5a565cd..824d661 100644 --- a/tests/testproxy/lp/pxyconn.c +++ b/tests/testproxy/lp/pxyconn.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/pxyconn.h b/tests/testproxy/lp/pxyconn.h index 76a1fea..df192c3 100644 --- a/tests/testproxy/lp/pxyconn.h +++ b/tests/testproxy/lp/pxyconn.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/pxythr.c b/tests/testproxy/lp/pxythr.c index d8dd494..50277a8 100644 --- a/tests/testproxy/lp/pxythr.c +++ b/tests/testproxy/lp/pxythr.c @@ -2,7 +2,7 @@ * SSLsplit - transparent SSL/TLS interception * https://www.roe.ch/SSLsplit * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/pxythr.h b/tests/testproxy/lp/pxythr.h index fb31eee..685b319 100644 --- a/tests/testproxy/lp/pxythr.h +++ b/tests/testproxy/lp/pxythr.h @@ -2,7 +2,7 @@ * SSLsplit - transparent SSL/TLS interception * https://www.roe.ch/SSLsplit * - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/pxythrmgr.c b/tests/testproxy/lp/pxythrmgr.c index 6233886..10fe208 100644 --- a/tests/testproxy/lp/pxythrmgr.c +++ b/tests/testproxy/lp/pxythrmgr.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2021, Soner Tari . + * Copyright (c) 2017-2022, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without