tab => spc, year++

This commit is contained in:
TLINDEN
2016-09-22 21:37:30 +02:00
parent 479f954986
commit 019c055e56
13 changed files with 86 additions and 86 deletions

View File

@@ -1,7 +1,7 @@
# #
# This file is part of udpxd. # This file is part of udpxd.
# #
# Copyright (C) 2015 T.v.Dein. # Copyright (C) 2015-2016 T.v.Dein.
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@@ -1,7 +1,7 @@
/* /*
This file is part of udpxd. This file is part of udpxd.
Copyright (C) 2015 T.v.Dein. Copyright (C) 2015-2016 T.v.Dein.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View File

@@ -1,7 +1,7 @@
/* /*
This file is part of udpxd. This file is part of udpxd.
Copyright (C) 2015 T.v.Dein. Copyright (C) 2015-2016 T.v.Dein.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

2
host.c
View File

@@ -1,7 +1,7 @@
/* /*
This file is part of udpxd. This file is part of udpxd.
Copyright (C) 2015 T.v.Dein. Copyright (C) 2015-2016 T.v.Dein.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

2
host.h
View File

@@ -1,7 +1,7 @@
/* /*
This file is part of udpxd. This file is part of udpxd.
Copyright (C) 2015 T.v.Dein. Copyright (C) 2015-2016 T.v.Dein.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

2
log.c
View File

@@ -1,7 +1,7 @@
/* /*
This file is part of udpxd. This file is part of udpxd.
Copyright (C) 2015 T.v.Dein. Copyright (C) 2015-2016 T.v.Dein.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

2
log.h
View File

@@ -1,7 +1,7 @@
/* /*
This file is part of udpxd. This file is part of udpxd.
Copyright (C) 2015 T.v.Dein. Copyright (C) 2015-2016 T.v.Dein.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

6
net.c
View File

@@ -1,7 +1,7 @@
/* /*
This file is part of udpxd. This file is part of udpxd.
Copyright (C) 2015 T.v.Dein. Copyright (C) 2015-2016 T.v.Dein.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -388,8 +388,8 @@ int main_loop(int listensocket, host_t *listen_h, host_t *bind_h, host_t *dst_h)
select(max + 1, &fds, NULL, NULL, NULL); select(max + 1, &fds, NULL, NULL, NULL);
if (FD_ISSET(listensocket, &fds)) { if (FD_ISSET(listensocket, &fds)) {
/* incoming client on the inside, get src, bind output fd, add to list /* incoming client on the inside, get src, bind output fd, add
if known, otherwise just handle it */ to list if known, otherwise just handle it */
handle_inside(listensocket, listen_h, bind_h, dst_h); handle_inside(listensocket, listen_h, bind_h, dst_h);
} }
else { else {

2
net.h
View File

@@ -1,7 +1,7 @@
/* /*
This file is part of udpxd. This file is part of udpxd.
Copyright (C) 2015 T.v.Dein. Copyright (C) 2015-2016 T.v.Dein.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View File

@@ -124,7 +124,7 @@
.\" ======================================================================== .\" ========================================================================
.\" .\"
.IX Title "UDPXD 1" .IX Title "UDPXD 1"
.TH UDPXD 1 "2015-04-27" "perl v5.14.2" "User Contributed Perl Documentation" .TH UDPXD 1 "2015-2016-04-27" "perl v5.14.2" "User Contributed Perl Documentation"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents. .\" way too many mistakes in technical documents.
.if n .ad l .if n .ad l
@@ -280,7 +280,7 @@ or to submit a patch, please open an issue on github:
.IX Header "LICENSE" .IX Header "LICENSE"
This software is licensed under the \s-1GNU\s0 \s-1GENERAL\s0 \s-1PUBLIC\s0 \s-1LICENSE\s0 version 3. This software is licensed under the \s-1GNU\s0 \s-1GENERAL\s0 \s-1PUBLIC\s0 \s-1LICENSE\s0 version 3.
.PP .PP
Copyright (c) 2015 by T. v. Dein. Copyright (c) 2015-2016 by T. v. Dein.
.PP .PP
This software uses \fButhash\fR (bundled), which is This software uses \fButhash\fR (bundled), which is
Copyright (c) 2003\-2013 by Troy D. Hanson. Copyright (c) 2003\-2013 by Troy D. Hanson.

View File

@@ -1,7 +1,7 @@
/* /*
This file is part of udpxd. This file is part of udpxd.
Copyright (C) 2015 T.v.Dein. Copyright (C) 2015-2016 T.v.Dein.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View File

@@ -1,7 +1,7 @@
/* /*
This file is part of udpxd. This file is part of udpxd.
Copyright (C) 2015 T.v.Dein. Copyright (C) 2015-2016 T.v.Dein.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View File

@@ -140,7 +140,7 @@ L<https://github.com/TLINDEN/udpxd/issues>.
This software is licensed under the GNU GENERAL PUBLIC LICENSE version 3. This software is licensed under the GNU GENERAL PUBLIC LICENSE version 3.
Copyright (c) 2015 by T. v. Dein. Copyright (c) 2015-2016 by T. v. Dein.
This software uses B<uthash> (bundled), which is This software uses B<uthash> (bundled), which is
Copyright (c) 2003-2013 by Troy D. Hanson. Copyright (c) 2003-2013 by Troy D. Hanson.