1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 14:26:39 +02:00

xfer: add and identify active/passive xfer types.

Before making any significant changes, let's identify the existing xfer types by either active or passive.
This commit is contained in:
Mario Campos
2023-08-18 10:07:23 -05:00
committed by Sébastien Helleu
parent 2a40743ed0
commit 23d70b5101
6 changed files with 35 additions and 24 deletions
+1 -1
View File
@@ -2148,7 +2148,7 @@ IRC_COMMAND_CALLBACK(dcc)
{
weechat_infolist_new_var_string (item, "plugin_name", weechat_plugin->name);
weechat_infolist_new_var_string (item, "plugin_id", ptr_server->name);
weechat_infolist_new_var_string (item, "type_string", "file_send");
weechat_infolist_new_var_string (item, "type_string", "file_send_passive");
weechat_infolist_new_var_string (item, "protocol_string", "dcc");
weechat_infolist_new_var_string (item, "remote_nick", argv[2]);
weechat_infolist_new_var_string (item, "local_nick", ptr_server->nick);