summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-09-27Add readline command completionautocompletionBenjamin Franzke1-0/+22
2011-09-27Handle whitespace around commandsBenjamin Franzke1-2/+22
2011-09-27Add support for command shortcutsBenjamin Franzke3-1/+26
So that distinct substrings of commands, can be used as shortcuts.
2011-09-25Add udp message targetsBenjamin Franzke2-1/+9
2011-09-25Fix bitshift for udp typeBenjamin Franzke1-1/+1
Its abit unclear in the documentation, whether the first bits refer to lsb or msb.
2011-09-25Print errors using g_printerrBenjamin Franzke1-1/+1
2011-09-25Fix coding styleBenjamin Franzke1-3/+3
There should not be a ' ' between functions names and open brackets. Only after keywords (switch,if,for..)
2011-09-25Add gstreamer option group to cmdline optionsBenjamin Franzke1-0/+1
2011-09-25Print session id in list_usersBenjamin Franzke1-1/+1
2011-09-25Do not assign and check in ifBenjamin Franzke1-3/+4
2011-09-25Add glib parsing function for argc and argv.Jan Klemkow1-7/+30
2011-09-24Add a general element finding routine to util.cBenjamin Franzke6-35/+50
And use this to implement find_user and find_channel as inline functions.
2011-09-24Add lc (list channels) commandBenjamin Franzke3-2/+66
2011-09-24Rename ls commands to luBenjamin Franzke1-1/+1
2011-09-24Use an asynchronous connection initiationBenjamin Franzke4-63/+84
So we arent blocked, and unable to handle cmdline interaction while connecting.
2011-09-23Add prefix cmumble_ to struct context and struct userBenjamin Franzke12-66/+67
2011-09-23Add a command interfaceBenjamin Franzke6-10/+93
Also add two simple commands: help and ls
2011-09-23Fix indentsBenjamin Franzke4-14/+14
2011-09-23Move audio-related stuff into audio.cBenjamin Franzke5-205/+254
2011-09-23Explicitly add ncurses for readlineBenjamin Franzke1-0/+2
2011-09-23Add -lncurses for libreadlineBenjamin Franzke1-1/+2
2011-09-23gen_message_list.sed: Use real tab for OpenBSD's sedBenjamin Franzke1-1/+1
2011-09-23Rename messages.[ch] to message.[ch]Benjamin Franzke4-7/+7
2011-09-23Rename mumble_message to cmumble_messageBenjamin Franzke1-1/+1
2011-09-23Add cmumble_ prefix to recv/send_msgBenjamin Franzke4-9/+9
2011-09-23Move recv/send_msg declarations to messages.hBenjamin Franzke4-14/+24
2011-09-23Rename message.h to message_list.hBenjamin Franzke4-10/+10
2011-09-23Store callbacks in contextBenjamin Franzke5-26/+22
2011-09-23Move connection related stuff into connection.cBenjamin Franzke6-78/+151
2011-09-23Fix warningsBenjamin Franzke3-9/+15
2011-09-23Makefile.am: Fix typo in gcc cflagsBenjamin Franzke1-1/+1
2011-09-23Add input support using readlineBenjamin Franzke6-2/+164
2011-09-22Use g_print always, not printf directlyBenjamin Franzke1-16/+18
So we can use glibs print handler later.
2011-09-22Fixup async read by using GPollableInputStream instead of GSocketBenjamin Franzke3-25/+34
With the GSource created from GSocket hacks were needed to get all events. GPollableInputStream is the interface implemented directly by GTlsInputStream.
2011-09-16Typesafe callback initializationBenjamin Franzke3-31/+37
2011-09-13Replace g_new0(*,1) with g_slice_new0(*)Benjamin Franzke1-2/+2
2011-09-12gen_messages.sed: Set LC_COLLATE=CBenjamin Franzke1-1/+1
And unset LC_ALL, since LC_COLLATE is whats actually needed here.
2011-09-12Ship mumble.pb-c.[ch] is releasesBenjamin Franzke1-1/+5
2011-09-07Use AC_PATH_PROG for protoc-cBenjamin Franzke4-12/+9
Also move PROTOC_C substution directly into src/protoc-c.sh.in instead of src/Makefile.am
2011-07-12gen_messages.sed: Rewrite to be posix compatibleBenjamin Franzke1-9/+8
Posix sed doesnt have lower/uppercase (\L,\R) substitution qualifier.
2011-07-12gen_messages.sed: Simplify rulesBenjamin Franzke1-5/+5
2011-07-12Run sed with LC_ALL=CBenjamin Franzke1-1/+1
FIXME: figure out whats broken on some machines with other locales.
2011-07-11protoc-c.sh: Build in suffixed-subdirsBenjamin Franzke1-5/+7
Fixes race in parallel build.
2011-07-11src/Makefile.am: s/$(top_srcdir)\/src/$(srcdir)/gBenjamin Franzke1-4/+4
2011-07-11Change build order of mumumble.pb-c.h and messages.hBenjamin Franzke1-1/+1
Just looks nicer when building :)
2011-07-11src/Makefile.am: Fix 80-columns linewrapBenjamin Franzke1-3/+6
2011-07-11Add protoc-c wrapper build scriptBenjamin Franzke2-3/+15
- Fixes simultaneous generation of mumble.pb-c.[ch] - Fixes out of source build (protoc-c's --c_out=. is somewhat broken since it outputs relative to the input files)
2011-07-11Fix out-of source build of messages.hBenjamin Franzke1-2/+2
2011-07-11Make use of BUILT_SOURCES variablesBenjamin Franzke1-7/+10
2011-07-11Remove unneeded m4 dirBenjamin Franzke2-7/+0