aboutsummaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/connection.c25
-rw-r--r--src/daemon/connection.h21
-rw-r--r--src/daemon/daemon.c26
-rw-r--r--src/daemon/internal.c21
-rw-r--r--src/daemon/internal.h21
-rw-r--r--src/daemon/memorypool.c21
-rw-r--r--src/daemon/memorypool.h21
-rw-r--r--src/daemon/response.c21
-rw-r--r--src/daemon/response.h21
9 files changed, 96 insertions, 102 deletions
diff --git a/src/daemon/connection.c b/src/daemon/connection.c
index fdbc975c..f65ff577 100644
--- a/src/daemon/connection.c
+++ b/src/daemon/connection.c
@@ -1,21 +1,22 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2007 Daniel Pittman and Christian Grothoff 3 (C) 2007 Daniel Pittman and Christian Grothoff
4
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
4 10
5 libmicrohttpd is free software; you can redistribute it and/or modify 11 This library is distributed in the hope that it will be useful,
6 it under the terms of the GNU General Public License as published 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
7 by the Free Software Foundation; either version 2, or (at your
8 option) any later version.
9
10 libmicrohttpd is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with this library; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
14 19
15 You should have received a copy of the GNU General Public License
16 along with libmicrohttpd; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/ 20*/
20 21
21/** 22/**
diff --git a/src/daemon/connection.h b/src/daemon/connection.h
index 4955931d..e00a83e1 100644
--- a/src/daemon/connection.h
+++ b/src/daemon/connection.h
@@ -2,20 +2,19 @@
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2007 Daniel Pittman and Christian Grothoff 3 (C) 2007 Daniel Pittman and Christian Grothoff
4 4
5 libmicrohttpd is free software; you can redistribute it and/or modify 5 This library is free software; you can redistribute it and/or
6 it under the terms of the GNU General Public License as published 6 modify it under the terms of the GNU Lesser General Public
7 by the Free Software Foundation; either version 2, or (at your 7 License as published by the Free Software Foundation; either
8 option) any later version. 8 version 2.1 of the License, or (at your option) any later version.
9 9
10 libmicrohttpd is distributed in the hope that it will be useful, but 10 This library is distributed in the hope that it will be useful,
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 Lesser General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU Lesser General Public
16 along with libmicrohttpd; see the file COPYING. If not, write to the 16 License along with this library; if not, write to the Free Software
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 Boston, MA 02111-1307, USA.
19*/ 18*/
20 19
21/** 20/**
diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c
index 34f76ce7..3caade12 100644
--- a/src/daemon/daemon.c
+++ b/src/daemon/daemon.c
@@ -1,21 +1,21 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2007 Daniel Pittman and Christian Grothoff 3 (C) 2007 Daniel Pittman and Christian Grothoff
4 4
5 libmicrohttpd is free software; you can redistribute it and/or modify 5 This library is free software; you can redistribute it and/or
6 it under the terms of the GNU General Public License as published 6 modify it under the terms of the GNU Lesser General Public
7 by the Free Software Foundation; either version 2, or (at your 7 License as published by the Free Software Foundation; either
8 option) any later version. 8 version 2.1 of the License, or (at your option) any later version.
9 9
10 libmicrohttpd is distributed in the hope that it will be useful, but 10 This library is distributed in the hope that it will be useful,
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
14 18
15 You should have received a copy of the GNU General Public License
16 along with libmicrohttpd; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/ 19*/
20 20
21/** 21/**
diff --git a/src/daemon/internal.c b/src/daemon/internal.c
index 6f674470..0407cfa9 100644
--- a/src/daemon/internal.c
+++ b/src/daemon/internal.c
@@ -2,20 +2,19 @@
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2007 Daniel Pittman and Christian Grothoff 3 (C) 2007 Daniel Pittman and Christian Grothoff
4 4
5 libmicrohttpd is free software; you can redistribute it and/or modify 5 This library is free software; you can redistribute it and/or
6 it under the terms of the GNU General Public License as published 6 modify it under the terms of the GNU Lesser General Public
7 by the Free Software Foundation; either version 2, or (at your 7 License as published by the Free Software Foundation; either
8 option) any later version. 8 version 2.1 of the License, or (at your option) any later version.
9 9
10 libmicrohttpd is distributed in the hope that it will be useful, but 10 This library is distributed in the hope that it will be useful,
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 Lesser General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU Lesser General Public
16 along with libmicrohttpd; see the file COPYING. If not, write to the 16 License along with this library; if not, write to the Free Software
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 Boston, MA 02111-1307, USA.
19*/ 18*/
20 19
21/** 20/**
diff --git a/src/daemon/internal.h b/src/daemon/internal.h
index 71914fd0..b4e3698e 100644
--- a/src/daemon/internal.h
+++ b/src/daemon/internal.h
@@ -2,20 +2,19 @@
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2007 Daniel Pittman and Christian Grothoff 3 (C) 2007 Daniel Pittman and Christian Grothoff
4 4
5 libmicrohttpd is free software; you can redistribute it and/or modify 5 This library is free software; you can redistribute it and/or
6 it under the terms of the GNU General Public License as published 6 modify it under the terms of the GNU Lesser General Public
7 by the Free Software Foundation; either version 2, or (at your 7 License as published by the Free Software Foundation; either
8 option) any later version. 8 version 2.1 of the License, or (at your option) any later version.
9 9
10 libmicrohttpd is distributed in the hope that it will be useful, but 10 This library is distributed in the hope that it will be useful,
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 Lesser General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU Lesser General Public
16 along with libmicrohttpd; see the file COPYING. If not, write to the 16 License along with this library; if not, write to the Free Software
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 Boston, MA 02111-1307, USA.
19*/ 18*/
20 19
21/** 20/**
diff --git a/src/daemon/memorypool.c b/src/daemon/memorypool.c
index 37cc50c1..cc51dd77 100644
--- a/src/daemon/memorypool.c
+++ b/src/daemon/memorypool.c
@@ -2,20 +2,19 @@
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2007 Daniel Pittman and Christian Grothoff 3 (C) 2007 Daniel Pittman and Christian Grothoff
4 4
5 libmicrohttpd is free software; you can redistribute it and/or modify 5 This library is free software; you can redistribute it and/or
6 it under the terms of the GNU General Public License as published 6 modify it under the terms of the GNU Lesser General Public
7 by the Free Software Foundation; either version 2, or (at your 7 License as published by the Free Software Foundation; either
8 option) any later version. 8 version 2.1 of the License, or (at your option) any later version.
9 9
10 libmicrohttpd is distributed in the hope that it will be useful, but 10 This library is distributed in the hope that it will be useful,
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 Lesser General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU Lesser General Public
16 along with libmicrohttpd; see the file COPYING. If not, write to the 16 License along with this library; if not, write to the Free Software
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 Boston, MA 02111-1307, USA.
19*/ 18*/
20 19
21/** 20/**
diff --git a/src/daemon/memorypool.h b/src/daemon/memorypool.h
index 92e09a51..f7704cf5 100644
--- a/src/daemon/memorypool.h
+++ b/src/daemon/memorypool.h
@@ -2,20 +2,19 @@
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2007 Daniel Pittman and Christian Grothoff 3 (C) 2007 Daniel Pittman and Christian Grothoff
4 4
5 libmicrohttpd is free software; you can redistribute it and/or modify 5 This library is free software; you can redistribute it and/or
6 it under the terms of the GNU General Public License as published 6 modify it under the terms of the GNU Lesser General Public
7 by the Free Software Foundation; either version 2, or (at your 7 License as published by the Free Software Foundation; either
8 option) any later version. 8 version 2.1 of the License, or (at your option) any later version.
9 9
10 libmicrohttpd is distributed in the hope that it will be useful, but 10 This library is distributed in the hope that it will be useful,
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 Lesser General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU Lesser General Public
16 along with libmicrohttpd; see the file COPYING. If not, write to the 16 License along with this library; if not, write to the Free Software
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 Boston, MA 02111-1307, USA.
19*/ 18*/
20 19
21/** 20/**
diff --git a/src/daemon/response.c b/src/daemon/response.c
index 412bf2ea..f52bb2df 100644
--- a/src/daemon/response.c
+++ b/src/daemon/response.c
@@ -2,20 +2,19 @@
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2007 Daniel Pittman and Christian Grothoff 3 (C) 2007 Daniel Pittman and Christian Grothoff
4 4
5 libmicrohttpd is free software; you can redistribute it and/or modify 5 This library is free software; you can redistribute it and/or
6 it under the terms of the GNU General Public License as published 6 modify it under the terms of the GNU Lesser General Public
7 by the Free Software Foundation; either version 2, or (at your 7 License as published by the Free Software Foundation; either
8 option) any later version. 8 version 2.1 of the License, or (at your option) any later version.
9 9
10 libmicrohttpd is distributed in the hope that it will be useful, but 10 This library is distributed in the hope that it will be useful,
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 Lesser General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU Lesser General Public
16 along with libmicrohttpd; see the file COPYING. If not, write to the 16 License along with this library; if not, write to the Free Software
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 Boston, MA 02111-1307, USA.
19*/ 18*/
20 19
21/** 20/**
diff --git a/src/daemon/response.h b/src/daemon/response.h
index a31ba30f..ec1b3878 100644
--- a/src/daemon/response.h
+++ b/src/daemon/response.h
@@ -2,20 +2,19 @@
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2007 Daniel Pittman and Christian Grothoff 3 (C) 2007 Daniel Pittman and Christian Grothoff
4 4
5 libmicrohttpd is free software; you can redistribute it and/or modify 5 This library is free software; you can redistribute it and/or
6 it under the terms of the GNU General Public License as published 6 modify it under the terms of the GNU Lesser General Public
7 by the Free Software Foundation; either version 2, or (at your 7 License as published by the Free Software Foundation; either
8 option) any later version. 8 version 2.1 of the License, or (at your option) any later version.
9 9
10 libmicrohttpd is distributed in the hope that it will be useful, but 10 This library is distributed in the hope that it will be useful,
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 Lesser General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU Lesser General Public
16 along with libmicrohttpd; see the file COPYING. If not, write to the 16 License along with this library; if not, write to the Free Software
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 Boston, MA 02111-1307, USA.
19*/ 18*/
20 19
21/** 20/**