summaryrefslogtreecommitdiffstats
path: root/gatchat/gatutil.c
AgeCommit message (Collapse)AuthorFilesLines
2012-01-11gatutil: Use g_ascii_isprint instead of isprintDenis Kenzior1-3/+3
2011-10-10gatchat: Update copyright informationMarcel Holtmann1-1/+1
2011-08-09gatchat: Abort hexdump helper when no debug function is specifiedMarcel Holtmann1-0/+3
2011-08-09gatchat: Fix extra empty line issue with hexdump helperMarcel Holtmann1-1/+1
2011-08-09gatchat: Add utility function for hexdump debugsMarcel Holtmann1-1/+41
2011-01-20gatchat: Small cleanup to make function look simplerMarcel Holtmann1-3/+2
2011-01-18gatchat: Turn off buffering of GAtChat IO channelsDenis Kenzior1-0/+2
After commit d83da353702c8533c36e06ead14aaec5ba900cf4 this was causing the command queue to never run.
2010-11-29gatchat: explicitly compare pointers to NULLLucas De Marchi1-3/+3
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl>
2010-08-16gatutil: Handle non-printable charactersDenis Kenzior1-1/+1
Signed arithmetic and shifts do not work well...
2010-04-13Fix: Don't try to set channel flags if they're 0Denis Kenzior1-6/+7
2010-04-10Add utility helper for debugging binary blobsMarcel Holtmann1-0/+23
2010-03-16Fix: Use g_try_malloc in gatutilDenis Kenzior1-1/+4
2010-01-28Add new constructor for fully blocking operationMarcel Holtmann1-2/+2
2010-01-20Refactor: Reorder argument orderDenis Kenzior1-2/+2
The order of arguments was a bit confusing, reorder them to make more logical sense.
2010-01-20Add gatutil.c to share common APIs with GAtServerZhenhua Zhang1-0/+129
Add gatutil.c/h gat.h and move shared typedef and APIs into it. So that they can be shared by GAtServer and GAtChat.