diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2004-07-04 16:04:00 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2004-07-04 16:04:00 +0000 |
commit | 97b34b36fc90a32258cb2a7f93febe4a3435f61e (patch) | |
tree | 70962a7bca12c0a678fdd87c3ceee2a739647a2b /src/irc/irc-dcc.c | |
parent | fb21a1c7f9c85a084540653ca3979be9aa5f2d21 (diff) | |
download | weechat-97b34b36fc90a32258cb2a7f93febe4a3435f61e.zip |
DCC skeleton
Diffstat (limited to 'src/irc/irc-dcc.c')
-rw-r--r-- | src/irc/irc-dcc.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/irc/irc-dcc.c b/src/irc/irc-dcc.c new file mode 100644 index 000000000..3178149a9 --- /dev/null +++ b/src/irc/irc-dcc.c @@ -0,0 +1,47 @@ +/* + * Copyright (c) 2004 by FlashCode <flashcode@flashtux.org> + * See README for License detail, AUTHORS for developers list. + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* irc-dcc.c: DCC communications (files & chat) */ + + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "../common/weechat.h" +#include "irc.h" + + +/* + * dcc_connect: connect to another host + */ + +void +dcc_connect () +{ +} + +/* + * dcc_send: send DCC request (file or chat) + */ + +void +dcc_send () +{ +} |