Browse Source

headers: Fix missing header comments

Alexander von Gluck IV 9 years ago
parent
commit
ba6c7a6bf9
8 changed files with 146 additions and 0 deletions
  1. 20
    0
      src/andns_net.h
  2. 20
    0
      src/andns_snsd.c
  3. 20
    0
      src/andns_snsd.h
  4. 18
    0
      src/common.h
  5. 18
    0
      src/libnetlink.h
  6. 14
    0
      src/ll_map.h
  7. 18
    0
      src/ntkresolv.c
  8. 18
    0
      src/ntkresolv.h

+ 20
- 0
src/andns_net.h View File

@@ -1,3 +1,23 @@
1
+			 /**************************************
2
+	        *     AUTHOR: Federico Tomassini        *
3
+	       *     Copyright (C) Federico Tomassini    *
4
+	      *     Contact effetom@gmail.com             *
5
+	     ***********************************************
6
+	     *******          BEGIN 4/2006          ********
7
+*************************************************************************
8
+*                                              				* 
9
+*  This program is free software; you can redistribute it and/or modify	*
10
+*  it under the terms of the GNU General Public License as published by	*
11
+*  the Free Software Foundation; either version 2 of the License, or	*
12
+*  (at your option) any later version.					*
13
+*									*
14
+*  This program is distributed in the hope that it will be useful,	*
15
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of	*
16
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the	*
17
+*  GNU General Public License for more details.				*
18
+*									*
19
+************************************************************************/
20
+
1 21
 #ifndef ANDNS_NET_H
2 22
 #define ANDNS_NET_H
3 23
 

+ 20
- 0
src/andns_snsd.c View File

@@ -1,3 +1,23 @@
1
+			 /**************************************
2
+	        *     AUTHOR: Federico Tomassini        *
3
+	       *     Copyright (C) Federico Tomassini    *
4
+	      *     Contact effetom@gmail.com             *
5
+	     ***********************************************
6
+	     *******          BEGIN 4/2006          ********
7
+*************************************************************************
8
+*                                              				* 
9
+*  This program is free software; you can redistribute it and/or modify	*
10
+*  it under the terms of the GNU General Public License as published by	*
11
+*  the Free Software Foundation; either version 2 of the License, or	*
12
+*  (at your option) any later version.					*
13
+*									*
14
+*  This program is distributed in the hope that it will be useful,	*
15
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of	*
16
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the	*
17
+*  GNU General Public License for more details.				*
18
+*									*
19
+************************************************************************/
20
+
1 21
 #include "includes.h"
2 22
 
3 23
 #include "llist.c"

+ 20
- 0
src/andns_snsd.h View File

@@ -1,3 +1,23 @@
1
+			 /**************************************
2
+	        *     AUTHOR: Federico Tomassini        *
3
+	       *     Copyright (C) Federico Tomassini    *
4
+	      *     Contact effetom@gmail.com             *
5
+	     ***********************************************
6
+	     *******          BEGIN 4/2006          ********
7
+*************************************************************************
8
+*                                              				* 
9
+*  This program is free software; you can redistribute it and/or modify	*
10
+*  it under the terms of the GNU General Public License as published by	*
11
+*  the Free Software Foundation; either version 2 of the License, or	*
12
+*  (at your option) any later version.					*
13
+*									*
14
+*  This program is distributed in the hope that it will be useful,	*
15
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of	*
16
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the	*
17
+*  GNU General Public License for more details.				*
18
+*									*
19
+************************************************************************/
20
+
1 21
 #ifndef ANDNS_SNSD_H
2 22
 #define ANDNS_SNSD_H
3 23
 

+ 18
- 0
src/common.h View File

@@ -1,3 +1,21 @@
1
+/* This file is part of Netsukuku
2
+ *
3
+ * This source code is free software; you can redistribute it and/or
4
+ * modify it under the terms of the GNU General Public License as published
5
+ * by the Free Software Foundation; either version 2 of the License,
6
+ * or (at your option) any later version.
7
+ *
8
+ * This source code is distributed in the hope that it will be useful,
9
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
+ * Please refer to the GNU Public License for more details.
12
+ *
13
+ * You should have received a copy of the GNU Public License along with
14
+ * this source code; if not, write to:
15
+ * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
+ *
17
+ */
18
+
1 19
 #ifndef COMMON_H
2 20
 #define COMMON_H
3 21
 

+ 18
- 0
src/libnetlink.h View File

@@ -1,3 +1,21 @@
1
+/* This file is part of Netsukuku
2
+ *
3
+ * This source code is free software; you can redistribute it and/or
4
+ * modify it under the terms of the GNU General Public License as published
5
+ * by the Free Software Foundation; either version 2 of the License,
6
+ * or (at your option) any later version.
7
+ *
8
+ * This source code is distributed in the hope that it will be useful,
9
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
+ * Please refer to the GNU Public License for more details.
12
+ *
13
+ * You should have received a copy of the GNU Public License along with
14
+ * this source code; if not, write to:
15
+ * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
+ *
17
+ */
18
+
1 19
 #ifndef __LIBNETLINK_H__
2 20
 #define __LIBNETLINK_H__ 1
3 21
 

+ 14
- 0
src/ll_map.h View File

@@ -1,3 +1,17 @@
1
+/*
2
+ * ll_map.c
3
+ *
4
+ *		This program is free software; you can redistribute it and/or
5
+ *		modify it under the terms of the GNU General Public License
6
+ *		as published by the Free Software Foundation; either version
7
+ *		2 of the License, or (at your option) any later version.
8
+ *
9
+ * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10
+ *
11
+ *
12
+ * Alpt: Added ll_first_up_if
13
+ */
14
+
1 15
 #ifndef LL_MAP_H
2 16
 #define LL_MAP_H
3 17
 

+ 18
- 0
src/ntkresolv.c View File

@@ -1,3 +1,21 @@
1
+/* This file is part of Netsukuku
2
+ *
3
+ * This source code is free software; you can redistribute it and/or
4
+ * modify it under the terms of the GNU General Public License as published
5
+ * by the Free Software Foundation; either version 2 of the License,
6
+ * or (at your option) any later version.
7
+ *
8
+ * This source code is distributed in the hope that it will be useful,
9
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
+ * Please refer to the GNU Public License for more details.
12
+ *
13
+ * You should have received a copy of the GNU Public License along with
14
+ * this source code; if not, write to:
15
+ * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
+ *
17
+ */
18
+
1 19
 #include <netinet/in.h>
2 20
 
3 21
 #include "includes.h"

+ 18
- 0
src/ntkresolv.h View File

@@ -1,3 +1,21 @@
1
+/* This file is part of Netsukuku
2
+ *
3
+ * This source code is free software; you can redistribute it and/or
4
+ * modify it under the terms of the GNU General Public License as published
5
+ * by the Free Software Foundation; either version 2 of the License,
6
+ * or (at your option) any later version.
7
+ *
8
+ * This source code is distributed in the hope that it will be useful,
9
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
+ * Please refer to the GNU Public License for more details.
12
+ *
13
+ * You should have received a copy of the GNU Public License along with
14
+ * this source code; if not, write to:
15
+ * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
+ *
17
+ */
18
+
1 19
 #ifndef NTK_RESOLV_H
2 20
 #define NTK_RESOLV_H
3 21
 

Loading…
Cancel
Save