diff options
| author | Richard Nyberg <rnyberg@murmeldjur.se> | 2006-09-13 07:02:07 +0000 |
|---|---|---|
| committer | Richard Nyberg <rnyberg@murmeldjur.se> | 2006-09-13 07:02:07 +0000 |
| commit | 86754d7d53b59ce52de51a32f865d4916c119bdb (patch) | |
| tree | f017a8199a94e675fb50f55876119fe9e9d1944b /cli/Makefile.am | |
| parent | 763cbbb59f40bdfb2478e58a685acfc262876af6 (diff) | |
| download | btpd-86754d7d53b59ce52de51a32f865d4916c119bdb.tar.gz btpd-86754d7d53b59ce52de51a32f865d4916c119bdb.zip | |
btpd now has a library of torrents indexed by number and info hash.
The add and del commands adds or removes torrents from this library. The start and stop commands are used to active or deactivate torrents. Also, a mechanism for qeurying data on torrents has been added. It's only used by the btcli list and stat commands yet though. btcli has been split into different files for each command. Both btpd and btcli now use misc/btpd_if.h for all ipc definitions. Misc changes: - struct metainfo is gone. Use the new mi_* functions. - Add printf format type checking where appropriate.
Diffstat (limited to 'cli/Makefile.am')
| -rw-r--r-- | cli/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Makefile.am b/cli/Makefile.am index 84e18f9..3222e95 100644 --- a/cli/Makefile.am +++ b/cli/Makefile.am @@ -5,7 +5,7 @@ btinfo_LDADD=../misc/libmisc.a -lcrypto -lm btinfo_CPPFLAGS=-I$(top_srcdir)/misc @openssl_CPPFLAGS@ btinfo_LDFLAGS=@openssl_LDFLAGS@ -btcli_SOURCES=btcli.c btpd_if.c btpd_if.h +btcli_SOURCES=btcli.c btcli.h add.c del.c list.c kill.c start.c stop.c stat.c btcli_LDADD=../misc/libmisc.a -lcrypto -lm btcli_CPPFLAGS=-I$(top_srcdir)/misc @openssl_CPPFLAGS@ btcli_LDFLAGS=@openssl_LDFLAGS@ |