northscale / libconflate
- Source
- Commits
- Network (3)
- Issues (0)
- Downloads (5)
- Wiki (1)
- Graphs
-
Branch:
master
Jayesh Jose (author)
Wed Dec 02 08:39:22 -0800 2009
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sun Oct 04 21:15:03 -0700 2009 | |
| |
.gitmodules | Sun Oct 04 21:14:50 -0700 2009 | |
| |
Doxyfile | Tue Sep 29 01:26:03 -0700 2009 | |
| |
LICENSE.txt | Fri Jun 12 12:17:50 -0700 2009 | |
| |
Makefile.am | Thu Sep 17 02:04:58 -0700 2009 | |
| |
README.markdown | Thu Jun 11 00:12:31 -0700 2009 | |
| |
adhoc_commands.c | ||
| |
alarm.c | Wed Aug 26 02:42:59 -0700 2009 | |
| |
alarm.h | Wed Aug 26 02:42:59 -0700 2009 | |
| |
autogen.sh | ||
| |
configure.ac | ||
| |
conflate.h | ||
| |
conflate_convenience.h | Fri May 15 17:50:42 -0700 2009 | |
| |
conflate_internal.h | Wed Sep 16 03:58:15 -0700 2009 | |
| |
examples/ | ||
| |
kvpair.c | ||
| |
libconflate.pc.in | Wed Sep 16 03:58:15 -0700 2009 | |
| |
libstrophe - ce1d79a | ||
| |
logging.c | Fri Jul 03 14:23:07 -0700 2009 | |
| |
persist.c | Fri Jul 03 14:23:07 -0700 2009 | |
| |
tests/ | ||
| |
util.c | Fri Jul 03 14:23:07 -0700 2009 | |
| |
xmpp.c |
README.markdown
Building
First, you need to build and install libstrophe:
Libstrophe
git clone git://github.com/dustin/libstrophe.git
cd libstrophe
git submodule init
git submodule update
./bootstrap.sh
./configure
make
And then install it:
mkdir ~/{lib,include}
cp *.h ~/include
cp *.a ~/lib
The Library and Example Bot
Now you're ready to build the library and example application.
git clone git://github.com/northscale/libconflate.git
cd libconflate
make
Trying the Example
There's a bit of infrastructure required to see it all work, but the example (bot.c) is ready to talk to your xmpp server and handle messages.
./examples/bot myjid@example.com mypassword
(optionally, you can specify a third argument to tell it exactly what xmpp server to connect to if you'd like to avoid SRV lookups)

