summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2012-09-06Update RANDR support from 0.x to include 1.0 - 1.4HEADmasterAlan Coopersmith6-29/+2074
2012-09-06Refactor error printing to use common functionsAlan Coopersmith3-146/+49
2012-09-06Add experimental support for reading a previously recorded fileAlan Coopersmith2-4/+331
2012-09-06Refactor fd closing into CloseFD helper functionAlan Coopersmith3-15/+21
2012-09-06When Verbose == 0, don't print number of data items in unknown reply typesAlan Coopersmith2-0/+5
2012-09-06Add -I command line flag to enter interactive mode at startupAlan Coopersmith2-2/+12
2012-09-06Add support for printing more types of property valueAlan Coopersmith1-2/+43
2012-09-06Print UTF8_STRING properties as text if locale uses UTF-8 charsetAlan Coopersmith4-6/+42
2012-09-06Create PrintPropertyValues function for property requestsAlan Coopersmith3-11/+26
2012-09-06Record atoms from InternAtom and GetAtomName requestsAlan Coopersmith5-28/+157
2012-09-06Convert ValueRec structures from unsigned long to uint32_t valuesAlan Coopersmith4-19/+19
2012-09-06Handle big-requests when calculating request contents from length fieldAlan Coopersmith3-35/+49
2012-09-06ILong: shift each byte individually, then OR them togetherAlan Coopersmith1-2/+2
2012-09-06Move ILong, IShort, etal to inline functions in x11.hAlan Coopersmith3-65/+58
2012-09-06Convert ILong, IShort, etal to return C99 uint*_t typesAlan Coopersmith2-8/+10
2012-09-06Convert remaining bcopy() calls to memcpy()Alan Coopersmith3-5/+5
2012-09-06Add _X_NORETURN to additional functions suggested by gcc warningsAlan Coopersmith2-4/+4
2012-09-06Convert remaining sprintf calls to snprintfAlan Coopersmith4-9/+11
2012-09-06SaveBytes: drop unnecessary casts in bcopy() callAlan Coopersmith1-3/+3
2012-07-21Move debug statement before panic() call, so it can actually runAlan Coopersmith1-1/+1
2012-07-21Convert some for loops to use C99-style inline variable declarationsAlan Coopersmith9-69/+36
2012-07-21Define *HEADER constants as string pointers, not arraysAlan Coopersmith2-5/+5
2012-07-21Combine usage message into single string for fprintfAlan Coopersmith1-12/+13
2012-07-21Use local variable for ioctl argument instead of a staticAlan Coopersmith1-2/+1
2012-07-21Convert to X.Org standard indentation & cleanup whitespaceAlan Coopersmith43-12263/+11748
2012-07-21Convert Keith's personal license notice to X.Org standard MIT license noticeAlan Coopersmith9-157/+103
2012-07-20Convert sources from ISO 8859-1 to UTF-8Alan Coopersmith11-14/+14
2012-07-08Retry _X11TransConnect on TRANS_TRY_CONNECT_AGAINJeff Smith1-4/+7
2012-07-08Bug 46696 - Try alternate protocol on X11 connection failure.Peter Jeremy1-13/+23
2012-07-08Bug 46691 - xscope-1.3.1 deadlocks if client or server would blockPeter Jeremy1-1/+1
2012-07-08Use __XFDS_BITS macros from Xpoll.h instead of direct __fds_bits accessAlan Coopersmith1-2/+7
2012-07-08Bug 46689 - xscope fd_set debug output is undefinedPeter Jeremy1-4/+3
2012-07-08Bug 46664 - xscope prints only half the characters in 16-bit stringsPeter Jeremy1-2/+2
2012-03-11Add link to original xscope paper in READMEAlan Coopersmith1-0/+4
2012-03-04Include <arpa/inet.h> for inet_addr in !USE_XTRANS caseJeremy Huddleston1-0/+3
2012-02-21xscope 1.3.1Alan Coopersmith1-1/+1
2012-01-15Check the right return value for malloc failureAlan Coopersmith1-1/+1
2012-01-15Mark panic() as _X_NORETURNAlan Coopersmith2-3/+6
2011-12-04Fix builds of scope.c with Solaris Studio compilersAlan Coopersmith1-0/+5
2011-11-11Remove extra definition of ScopeEnabled from x11.hAlan Coopersmith1-2/+0
2011-09-30Add const attributes to clear gcc -Wwrite-strings warningsAlan Coopersmith5-15/+15
2011-09-30Store ClientNumber as int instead of converting back & forth to longAlan Coopersmith2-2/+2
2011-09-30File descriptors should be stored in ints not shortsAlan Coopersmith3-7/+7
2011-09-30Remove StaticMaxFD now that all uses now allocate dynamicallyAlan Coopersmith2-8/+0
2011-09-30Make FDinfo dynamically allocatedAlan Coopersmith3-2/+6
2011-09-30Allocate buffers dynamically as needed instead of as part of fdinfo structAlan Coopersmith2-1/+17
2011-09-30Make ReplyQ dynamically allocatedAlan Coopersmith1-8/+5
2011-09-30Make CS dynamically allocatedAlan Coopersmith3-2/+5
2011-09-30Ensure ScopeHost global is initialized when built with USE_XTRANSAlan Coopersmith1-8/+7
2011-09-30Use strdup instead of malloc(strlen+1); strcpy();Alan Coopersmith1-2/+1