Added INSTALL.{gaim,applet}.
[doldaconnect.git] / README
... / ...
CommitLineData
1 Dolda Connect - README
2
3 Introduction
4
5Dolda Connect is a peer-to-peer file sharing program, designed around
6the Direct Connect protocol. It is written in a fashion that is
7intended for flexibility and easy extension. It currently only
8supports the normal Direct Connect protocol, but support is also
9planned for the ADC protocol, and it can most likely be made to
10support a great deal of other file sharing protocols as well.
11
12 Extensibility
13
14Dolda Connect is built around a client-server model, in the way that
15there is a server (daemon) program carrying out all the actual
16file-sharing work, and a number of client programs that connect to the
17server in order to command it and display its status. The interaction
18between the client and server is carried out using a well-defined
19protocol, making it fairly easy to write new clients for specialized
20tasks. It is worthy of note that the default configuration file
21disables running clients over the network, for convenience of
22setup. See the INSTALL file for details and instructions on how to
23enabled networked clients.
24
25To make it easier to write new clients, a C library has been written
26to make common functions easier, such as connecting, authenticating,
27sending requests and parsing the responses. The C library also has a
28wrapper module for GNU Guile, so that clients can be written in
29Scheme. As of 0.3, there is also a Python module available seperately.
30
31None of these are documented (yet), but there are a number of examples
32scattered around the source tree, so it should not be awfully hard to
33figure out how to do simple things. If in doubt, just contact the
34author.
35
36 Clients
37
38So far, the following clients are distributed along with the source
39tree:
40
41 * A Gtk2 based GUI, which loosely resembles a normal Direct Connect
42 client program.
43 * A GNOME panel applet for showing the status of current downloads in
44 progress.
45 * A Gaim chat plugin for chatting in hubs and writing private
46 messages (only for Gaim 2.0.0 and above).
47 * A command-line automatic downloader written in Scheme.
48 * A chat logger written in Scheme.
49 * A hub manager written in Scheme.
50
51The GNOME applet and Gaim plugin are somewhat experimental. The applet
52seems to be working well, but the installation have some quirks (since
53GNOME does not normally look in /usr/local, care must be taken with
54the installation prefix). The Gaim plugin seems to be leaking some
55memory.
56
57 Installation
58
59See the INSTALL file.
60
61 Documentation
62
63Documentation is still spotty at best. For any information not found
64in the README or INSTALL files (or the source code, if you are a
65programmer), contact the author.
66
67 Credits
68
69Dolda Connect is primarily written by Fredrik Tolf. He can be reached
70through the e-mail address <fredrik@dolda2000.com>. His homepage is
71<http://www.dolda2000.com/~fredrik/>.
72
73
74
75This documented was last updated 2007-04-11, reflecting release 0.3 of
76Dolda Connect.