summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-03-31Merge pull request #11 from ufo-kit/sync-statesHEADmasterMarcus Zuber
Pass is_recording and is_readout to server
2020-03-31Pass is_recording and is_readout to serverMarcus Zuber
2020-03-30Fix hostMarcus Zuber
2018-06-26Fix a few minor leaksMatthias Vogelgesang
2018-06-19Fix #10: transmit enum value nick namesMatthias Vogelgesang
2018-05-25Support more property typesMatthias Vogelgesang
2018-04-25meson: fix wrong argument nameMatthias Vogelgesang
2018-01-24ucad: fix readoutMatthias Vogelgesang
2018-01-24Raise enum value name length and issue warningMatthias Vogelgesang
2018-01-24Remove debug output and misleading commentMatthias Vogelgesang
2017-12-08Transmit enum value namesMatthias Vogelgesang
2017-10-16Don't use g_object_unref on NULLMatthias Vogelgesang
2017-10-16Fix #7: use glib-unix.h only on UNIX-like OSesMatthias Vogelgesang
2017-10-13Include glib-unix.h for g_unix_signal_addMatthias Vogelgesang
2017-10-13ucad: use GIO way to listen to signalsMatthias Vogelgesang
2017-10-12Fix return valueMatthias Vogelgesang
2017-10-12Send flag that denotes serialization validityMatthias Vogelgesang
Before, we tried to install an existing property if the new property could not been serialized. Now, we always send a property description but denote if it is properly serialized.
2017-10-11Add meson supportMatthias Vogelgesang
2017-10-11ucad: print errors on stderrMatthias Vogelgesang
2017-10-11ucad: handle SIGINT gracefullyMatthias Vogelgesang
2017-10-10Support int64 and uint64 propertiesMatthias Vogelgesang
2017-10-10Improve custom enum handlingMatthias Vogelgesang
2017-10-10Add warning if we cannot deserialize a propertyMatthias Vogelgesang
2017-10-10ucad: improve warningMatthias Vogelgesang
2017-10-05Specify UCA_NET_HOST env varMatthias Vogelgesang
2017-04-07ucad: print error if serve returns unexpectedlyMatthias Vogelgesang
2017-04-06Show debug output for property settingMatthias Vogelgesang
2017-04-04Use GNUInstallDirs to set install pathsMatthias Vogelgesang
2017-04-04Add .gitignoreMatthias Vogelgesang
2016-12-23Fix #6: correctly check g_strcmp0Matthias Vogelgesang
2016-12-21Merge pull request #5 from ufo-kit/fix-3Matthias Vogelgesang
Fix #3: use one socket connect per request
2016-12-16Fix #3: use one socket connect per requestMatthias Vogelgesang
Previously all requests shared the same connection which meant that the client had to wait that a request finished until it could issue another request. Otherwise, replies could end up for the wrong request causing all kinds of problems. This synchronous request-reply model could not be kept because of inherent asynchronicity of certain mechanisms (e.g. grab + software trigger). This change removes the always-open socket connection and replaces it with a new connection per request. Due to the OS multiplexing, replies cannot be mistaken.
2016-12-16Merge pull request #4 from softwareschneiderei/masterMatthias Vogelgesang
Defined missing paths for correct installation
2016-12-16Defined missing paths for correct installationMarius Elvert
2016-12-15Set CMake policies for newer CMake versionsMatthias Vogelgesang
2016-12-15Compile with -fPIC by defaultMatthias Vogelgesang
2016-07-19Allow setting host via UCA_NET_HOSTMatthias Vogelgesang
2016-04-13Match different errors for GLib <= 2.36Matthias Vogelgesang
2016-04-01Document way to specify port for the grab exampleMatthias Vogelgesang
2016-03-16Use current exported symbol nameMatthias Vogelgesang
See https://github.com/ufo-kit/libuca/commit/6c2c19d1101a043cc0b05065447cc9321ed32ac0
2016-02-18Do not throw assertion in case of mismatched dataMatthias Vogelgesang
2016-02-18Read entire replyMatthias Vogelgesang
2016-02-18Fix segfault for particular reply conditionMatthias Vogelgesang
2016-02-18Support custom string propertiesMatthias Vogelgesang
2016-02-18Fix segfault if server is not runningMatthias Vogelgesang
2016-02-18Proxy custom camera properties to the clientMatthias Vogelgesang
2016-02-18Fix set property handlerMatthias Vogelgesang
No message type was sent thus corrupting communication.
2016-02-17Unset errorMatthias Vogelgesang
2016-02-17Fix writing wrong bufferMatthias Vogelgesang
2016-02-17Implement outstanding write requestMatthias Vogelgesang