summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/filecache.c24
-rw-r--r--src/filecache.h20
-rw-r--r--src/fusedav.c24
-rw-r--r--src/fusedav.h20
-rw-r--r--src/openssl-thread.c24
-rw-r--r--src/openssl-thread.h20
-rw-r--r--src/session.c24
-rw-r--r--src/session.h20
-rw-r--r--src/statcache.c24
-rw-r--r--src/statcache.h20
10 files changed, 220 insertions, 0 deletions
diff --git a/src/filecache.c b/src/filecache.c
index d4d3a26..985d575 100644
--- a/src/filecache.c
+++ b/src/filecache.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of fusedav.
+
+ fusedav is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ fusedav is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with fusedav; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#define _XOPEN_SOURCE 500
#include <errno.h>
diff --git a/src/filecache.h b/src/filecache.h
index 90972b0..f4b50b4 100644
--- a/src/filecache.h
+++ b/src/filecache.h
@@ -1,6 +1,26 @@
#ifndef foofilecachehfoo
#define foofilecachehfoo
+/* $Id$ */
+
+/***
+ This file is part of fusedav.
+
+ fusedav is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ fusedav is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with fusedav; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <sys/types.h>
void* file_cache_open(const char *path, int flags);
diff --git a/src/fusedav.c b/src/fusedav.c
index 355feae..92fceb1 100644
--- a/src/fusedav.c
+++ b/src/fusedav.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of fusedav.
+
+ fusedav is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ fusedav is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with fusedav; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <signal.h>
#include <pthread.h>
#include <time.h>
diff --git a/src/fusedav.h b/src/fusedav.h
index f233066..35598ae 100644
--- a/src/fusedav.h
+++ b/src/fusedav.h
@@ -1,6 +1,26 @@
#ifndef foofusedevhfoo
#define foofusedevhfoo
+/* $Id$ */
+
+/***
+ This file is part of fusedav.
+
+ fusedav is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ fusedav is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with fusedav; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
extern int debug;
#endif
diff --git a/src/openssl-thread.c b/src/openssl-thread.c
index 8dd0506..c28ebfe 100644
--- a/src/openssl-thread.c
+++ b/src/openssl-thread.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of fusedav.
+
+ fusedav is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ fusedav is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with fusedav; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <pthread.h>
#include <openssl/crypto.h>
diff --git a/src/openssl-thread.h b/src/openssl-thread.h
index f311760..9ba91d0 100644
--- a/src/openssl-thread.h
+++ b/src/openssl-thread.h
@@ -1,6 +1,26 @@
#ifndef fooopensslhfoo
#define fooopensslhfoo
+/* $Id$ */
+
+/***
+ This file is part of fusedav.
+
+ fusedav is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ fusedav is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with fusedav; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
void openssl_thread_setup(void);
void openssl_thread_cleanup(void);
diff --git a/src/session.c b/src/session.c
index 4f1009b..75c37c8 100644
--- a/src/session.c
+++ b/src/session.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of fusedav.
+
+ fusedav is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ fusedav is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with fusedav; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <stdio.h>
#include <assert.h>
#include <pthread.h>
diff --git a/src/session.h b/src/session.h
index 5ac0114..7a46782 100644
--- a/src/session.h
+++ b/src/session.h
@@ -1,6 +1,26 @@
#ifndef foosessionhfoo
#define foosessionhfoo
+/* $Id$ */
+
+/***
+ This file is part of fusedav.
+
+ fusedav is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ fusedav is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with fusedav; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <ne_session.h>
ne_session *session_get(void);
diff --git a/src/statcache.c b/src/statcache.c
index 3622a73..f71c1a6 100644
--- a/src/statcache.c
+++ b/src/statcache.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of fusedav.
+
+ fusedav is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ fusedav is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with fusedav; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <stdio.h>
#include <inttypes.h>
#include <time.h>
diff --git a/src/statcache.h b/src/statcache.h
index 5af9bd9..6e96ba4 100644
--- a/src/statcache.h
+++ b/src/statcache.h
@@ -1,6 +1,26 @@
#ifndef foostatcachehfoo
#define foostatcachehfoo
+/* $Id$ */
+
+/***
+ This file is part of fusedav.
+
+ fusedav is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ fusedav is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with fusedav; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include <sys/stat.h>
int stat_cache_get(const char *fn, struct stat *st);