[project @ 2002-08-06 20:48:44 by unknown_lamer]
[clinton/bobotpp.git] / source / DCCConnection.C
1 // DCCConnection.C -*- C++ -*-
2 // Copyright (c) 1998 Etienne BERNARD
3 // Copyright (C) 2002 Clinton Ebadi
4
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // any later version.
9
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
18
19 #include <ctime>
20
21 #include "Socket.H"
22 #include "DCCParser.H"
23 #include "DCCConnection.H"
24
25 DCCConnection::DCCConnection(Bot *b, String n, unsigned long address,
26 int port)
27 : Connection(address, port), bot(b), nuh(n),
28 lastSpoken(time(0)), autoRemove(true)
29 { }
30
31 bool
32 DCCConnection::connect()
33 {
34 if (!socket.connect())
35 return false;
36 return true;
37 }
38
39 bool
40 DCCConnection::handleInput()
41 {
42 String line = socket.readLine();
43
44 lastSpoken = time(0);
45
46 if (line.length() == 0)
47 return true;
48
49 if (bot->debug)
50 std::cout << "DCC: <" << line << ">" << std::endl;
51
52 DCCParser::parseLine(this, line);
53
54 return false;
55 }
56
57 void
58 DCCConnection::sendNotice(String message)
59 {
60 socket.write(message, true);
61 }