Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-11-18 | UDP_AND_GST1_AND_CLOCKUDP_AND_GST1_AND_CLOCK | Benjamin Franzke | 5 | -9/+66 | |
2012-02-16 | Add verbose optionUDP | Benjamin Franzke | 4 | -9/+27 | |
Disable all debug output using that flag for now. | |||||
2012-02-13 | Implement reject message | Benjamin Franzke | 1 | -1/+21 | |
2012-02-12 | Fix typo in cmumble struct name | Benjamin Franzke | 13 | -70/+70 | |
2012-02-12 | Add support for transporting audio data using udpudp-3 | Benjamin Franzke | 8 | -35/+576 | |
With crypt.c importet from umurmur, changed encrypt key to use raw_key instead of decrypt_iv. | |||||
2012-02-10 | Derive message type from position in .proto file | Benjamin Franzke | 4 | -48/+29 | |
This involves changing the .proto file, to actually reflect the type in the protocol. | |||||
2012-02-10 | Use sizeof in encode_varint call for buffer size | Benjamin Franzke | 1 | -1/+1 | |
2012-02-10 | gen_message_list.sed: Add an exmaple | Benjamin Franzke | 1 | -0/+2 | |
This should help understanding that code easily. | |||||
2012-02-10 | s/ctx/cm/g; s/struct cmumble_context/struct cmumlbe/g | Benjamin Franzke | 13 | -168/+168 | |
2011-10-08 | audio: Another type fix | Benjamin Franzke | 2 | -2/+2 | |
2011-10-08 | audio.h: Fix type | Benjamin Franzke | 1 | -1/+1 | |
2011-09-29 | Support delimiter in cmdline arguments | Benjamin Franzke | 1 | -4/+32 | |
Delimiters are " and '. | |||||
2011-09-28 | Support sending TextMessages | Benjamin Franzke | 1 | -0/+31 | |
2011-09-28 | Support receiving TextMessages | Benjamin Franzke | 1 | -1/+11 | |
2011-09-28 | Store own user in cmumble_context | Benjamin Franzke | 2 | -0/+6 | |
2011-09-28 | Store channel in cmumble_user | Benjamin Franzke | 2 | -1/+2 | |
2011-09-28 | Pass argc and argv for internal commands | Benjamin Franzke | 3 | -22/+68 | |
2011-09-28 | find_by_id: Fix lookup (v2) | Benjamin Franzke | 1 | -1/+1 | |
The offset should be taken from the (GList *)::data pointer, not the list directly.. v2: Drop accidentially commited wip stuff | |||||
2011-09-28 | Revert "find_by_id: Fix lookup" | Benjamin Franzke | 4 | -30/+8 | |
This reverts commit c1cf0a71cfd8aa3441e57592e17de0d34823d305. | |||||
2011-09-28 | find_by_id: Fix lookup | Benjamin Franzke | 4 | -8/+30 | |
The offset should be taken from the (GList *)::data pointer, not the list directly.. | |||||
2011-09-28 | find_user: Renmae session to session_id for readability | Benjamin Franzke | 1 | -2/+2 | |
2011-09-28 | find_user: Match against session id | Benjamin Franzke | 1 | -1/+1 | |
2011-09-28 | message: Fix segfault when error is Null but ret <= 0 | Benjamin Franzke | 1 | -1/+3 | |
2011-09-28 | Print welcome message | Benjamin Franzke | 1 | -1/+2 | |
2011-09-28 | Fix lines with more than 80 characters. | Jan Klemkow | 1 | -4/+8 | |
2011-09-27 | Rename: cmumble_command_{complete=>expand_shortcut} | Benjamin Franzke | 3 | -3/+3 | |
2011-09-27 | Fix connection finish, if not connected | Benjamin Franzke | 1 | -8/+12 | |
2011-09-27 | Catch connection lost | Benjamin Franzke | 1 | -1/+9 | |
2011-09-27 | Add readline command completionautocompletion | Benjamin Franzke | 1 | -0/+22 | |
2011-09-27 | Handle whitespace around commands | Benjamin Franzke | 1 | -2/+22 | |
2011-09-27 | Add support for command shortcuts | Benjamin Franzke | 3 | -1/+26 | |
So that distinct substrings of commands, can be used as shortcuts. | |||||
2011-09-25 | Add udp message targets | Benjamin Franzke | 2 | -1/+9 | |
2011-09-25 | Fix bitshift for udp type | Benjamin Franzke | 1 | -1/+1 | |
Its abit unclear in the documentation, whether the first bits refer to lsb or msb. | |||||
2011-09-25 | Print errors using g_printerr | Benjamin Franzke | 1 | -1/+1 | |
2011-09-25 | Fix coding style | Benjamin Franzke | 1 | -3/+3 | |
There should not be a ' ' between functions names and open brackets. Only after keywords (switch,if,for..) | |||||
2011-09-25 | Add gstreamer option group to cmdline options | Benjamin Franzke | 1 | -0/+1 | |
2011-09-25 | Print session id in list_users | Benjamin Franzke | 1 | -1/+1 | |
2011-09-25 | Do not assign and check in if | Benjamin Franzke | 1 | -3/+4 | |
2011-09-25 | Add glib parsing function for argc and argv. | Jan Klemkow | 1 | -7/+30 | |
2011-09-24 | Add a general element finding routine to util.c | Benjamin Franzke | 6 | -35/+50 | |
And use this to implement find_user and find_channel as inline functions. | |||||
2011-09-24 | Add lc (list channels) command | Benjamin Franzke | 3 | -2/+66 | |
2011-09-24 | Rename ls commands to lu | Benjamin Franzke | 1 | -1/+1 | |
2011-09-24 | Use an asynchronous connection initiation | Benjamin Franzke | 4 | -63/+84 | |
So we arent blocked, and unable to handle cmdline interaction while connecting. | |||||
2011-09-23 | Add prefix cmumble_ to struct context and struct user | Benjamin Franzke | 12 | -66/+67 | |
2011-09-23 | Add a command interface | Benjamin Franzke | 6 | -10/+93 | |
Also add two simple commands: help and ls | |||||
2011-09-23 | Fix indents | Benjamin Franzke | 4 | -14/+14 | |
2011-09-23 | Move audio-related stuff into audio.c | Benjamin Franzke | 5 | -205/+254 | |
2011-09-23 | Explicitly add ncurses for readline | Benjamin Franzke | 1 | -0/+2 | |
2011-09-23 | Add -lncurses for libreadline | Benjamin Franzke | 1 | -1/+2 | |
2011-09-23 | gen_message_list.sed: Use real tab for OpenBSD's sed | Benjamin Franzke | 1 | -1/+1 | |