summaryrefslogtreecommitdiff
path: root/src/plugins/xfer
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/xfer')
-rw-r--r--src/plugins/xfer/xfer-buffer.c6
-rw-r--r--src/plugins/xfer/xfer-chat.c6
-rw-r--r--src/plugins/xfer/xfer-command.c6
-rw-r--r--src/plugins/xfer/xfer-completion.c6
-rw-r--r--src/plugins/xfer/xfer-config.c6
-rw-r--r--src/plugins/xfer/xfer-dcc.c6
-rw-r--r--src/plugins/xfer/xfer-file.c6
-rw-r--r--src/plugins/xfer/xfer-info.c6
-rw-r--r--src/plugins/xfer/xfer-network.c6
-rw-r--r--src/plugins/xfer/xfer-upgrade.c6
-rw-r--r--src/plugins/xfer/xfer.c6
11 files changed, 22 insertions, 44 deletions
diff --git a/src/plugins/xfer/xfer-buffer.c b/src/plugins/xfer/xfer-buffer.c
index fed1d6cb0..0b9ca869f 100644
--- a/src/plugins/xfer/xfer-buffer.c
+++ b/src/plugins/xfer/xfer-buffer.c
@@ -1,4 +1,6 @@
/*
+ * xfer-buffer.c - display xfer list on xfer buffer
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer-buffer.c: display xfer list on xfer buffer
- */
-
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
diff --git a/src/plugins/xfer/xfer-chat.c b/src/plugins/xfer/xfer-chat.c
index 4416e2381..0ee672c9f 100644
--- a/src/plugins/xfer/xfer-chat.c
+++ b/src/plugins/xfer/xfer-chat.c
@@ -1,4 +1,6 @@
/*
+ * xfer-chat.c - chat with direct connection to remote host
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer-chat.c: chat with direct connection to remote host
- */
-
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
diff --git a/src/plugins/xfer/xfer-command.c b/src/plugins/xfer/xfer-command.c
index 807079ad7..44cec54f9 100644
--- a/src/plugins/xfer/xfer-command.c
+++ b/src/plugins/xfer/xfer-command.c
@@ -1,4 +1,6 @@
/*
+ * xfer-command.c - xfer command
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer-command.c: xfer command
- */
-
#include <stdlib.h>
#include <string.h>
#include <time.h>
diff --git a/src/plugins/xfer/xfer-completion.c b/src/plugins/xfer/xfer-completion.c
index d537c3c51..f060927e9 100644
--- a/src/plugins/xfer/xfer-completion.c
+++ b/src/plugins/xfer/xfer-completion.c
@@ -1,4 +1,6 @@
/*
+ * xfer-completion.c - nick completion for xfer chats
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer-completion.c: nick completion for xfer chats
- */
-
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
diff --git a/src/plugins/xfer/xfer-config.c b/src/plugins/xfer/xfer-config.c
index ebbd88cd2..b2ac86178 100644
--- a/src/plugins/xfer/xfer-config.c
+++ b/src/plugins/xfer/xfer-config.c
@@ -1,4 +1,6 @@
/*
+ * xfer-config.c - xfer configuration options (file xfer.conf)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer-config.c: xfer configuration options (file xfer.conf)
- */
-
#include <stdlib.h>
#include <limits.h>
diff --git a/src/plugins/xfer/xfer-dcc.c b/src/plugins/xfer/xfer-dcc.c
index fc8c702c4..49a8a6a63 100644
--- a/src/plugins/xfer/xfer-dcc.c
+++ b/src/plugins/xfer/xfer-dcc.c
@@ -1,4 +1,6 @@
/*
+ * xfer-dcc.c - file transfer via DCC protocol
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer-dcc.c: file transfer via DCC protocol
- */
-
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
diff --git a/src/plugins/xfer/xfer-file.c b/src/plugins/xfer/xfer-file.c
index e8338e010..56309fc03 100644
--- a/src/plugins/xfer/xfer-file.c
+++ b/src/plugins/xfer/xfer-file.c
@@ -1,4 +1,6 @@
/*
+ * xfer-file.c - file functions for xfer plugin
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer-file.c: file functions for xfer plugin
- */
-
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
diff --git a/src/plugins/xfer/xfer-info.c b/src/plugins/xfer/xfer-info.c
index 9276bd452..9e648d67d 100644
--- a/src/plugins/xfer/xfer-info.c
+++ b/src/plugins/xfer/xfer-info.c
@@ -1,4 +1,6 @@
/*
+ * xfer-info.c - info and infolist hooks for xfer plugin
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer-info.c: info and infolist hooks for xfer plugin
- */
-
#include <stdlib.h>
#include <stdio.h>
diff --git a/src/plugins/xfer/xfer-network.c b/src/plugins/xfer/xfer-network.c
index 78dc2b019..1252713cc 100644
--- a/src/plugins/xfer/xfer-network.c
+++ b/src/plugins/xfer/xfer-network.c
@@ -1,4 +1,6 @@
/*
+ * xfer-network.c - network functions for xfer plugin
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer-network.c: network functions for xfer plugin
- */
-
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
diff --git a/src/plugins/xfer/xfer-upgrade.c b/src/plugins/xfer/xfer-upgrade.c
index fe0137e10..a948470d3 100644
--- a/src/plugins/xfer/xfer-upgrade.c
+++ b/src/plugins/xfer/xfer-upgrade.c
@@ -1,4 +1,6 @@
/*
+ * xfer-upgrade.c - save/restore xfer plugin data when upgrading WeeChat
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer-upgrade.c: save/restore xfer plugin data when upgrading WeeChat
- */
-
#include <stdlib.h>
#include <string.h>
diff --git a/src/plugins/xfer/xfer.c b/src/plugins/xfer/xfer.c
index f9f099b4a..f45cb7688 100644
--- a/src/plugins/xfer/xfer.c
+++ b/src/plugins/xfer/xfer.c
@@ -1,4 +1,6 @@
/*
+ * xfer.c - file transfer and direct chat plugin for WeeChat
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * xfer.c: file transfer and direct chat plugin for WeeChat
- */
-
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>