mirror of
https://codeberg.org/scip/udpxd.git
synced 2025-12-16 19:40:58 +01:00
tab => spc, year++
This commit is contained in:
2
Makefile
2
Makefile
@@ -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
client.c
2
client.c
@@ -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
client.h
2
client.h
@@ -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
2
host.c
@@ -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
2
host.h
@@ -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
2
log.c
@@ -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
2
log.h
@@ -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
6
net.c
@@ -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
2
net.h
@@ -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
|
||||||
|
|||||||
4
udpxd.1
4
udpxd.1
@@ -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.
|
||||||
|
|||||||
2
udpxd.c
2
udpxd.c
@@ -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
udpxd.h
2
udpxd.h
@@ -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
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
Reference in New Issue
Block a user