freeswitch/libs/libdingaling
Anthony Minessale 47192db741 Upgrade Dingaling to meet new googletalk spec upgrade your client if you have issues.
codecs need more work...

Expose events into javascript so you can create and fire events and 
and pick up chat events with chat-enabled clients like googletalk
EXAMPLE:

session.answer();

e = new Event("custom", "JS::Custom");
e.addHeader("subject", "cool");
e.addBody("hello this is a test");
e.fire;

while(session.ready()) {
    session.execute("sleep", "1000");
    event = session.getEvent();
    if (event) {
      str = event.serialize(); // or ("xml")
      console_log("debug", "Dump Event:\n" + str + "\n");


        e = new Event("custom", "JS::Chat");
        e.addHeader("works", "yes");
        e.addBody("you said: " + event.getBody());
        session.sendEvent(e);
      event.destroy();
    }
}





git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2323 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-18 01:28:50 +00:00
..
docs Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
src Upgrade Dingaling to meet new googletalk spec upgrade your client if you have issues. 2006-08-18 01:28:50 +00:00
AUTHORS Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
COPYING Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
ChangeLog Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
INSTALL Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
Makefile.am a stunning new change 2006-04-04 16:07:40 +00:00
Makefile.in autoheadache 2006-08-11 00:39:35 +00:00
NEWS Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
README Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
aclocal.m4 autoheadache 2006-08-11 00:39:35 +00:00
compile Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
config.guess Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
config.sub Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
configure autoheadache 2006-08-11 00:39:35 +00:00
configure.in autoconf crap 2006-07-22 01:02:36 +00:00
depcomp Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
doc Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
install-sh Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
libdingaling.vcproj Update to new build system for windows. 2006-08-17 19:58:55 +00:00
ltmain.sh Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
missing Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00
mkinstalldirs Addition of libdingaling and mod_dingaling to enable jingle support 2006-03-31 19:38:09 +00:00

README

Install is common:

./configure --with-prefix=<desired prefix>
make
make install