summaryrefslogtreecommitdiff
path: root/ucad.c
AgeCommit message (Collapse)Author
2018-06-19Fix #10: transmit enum value nick namesMatthias 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-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-10ucad: improve warningMatthias Vogelgesang
2017-04-07ucad: print error if serve returns unexpectedlyMatthias Vogelgesang
2017-04-06Show debug output for property settingMatthias Vogelgesang
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-04-13Match different errors for GLib <= 2.36Matthias Vogelgesang
2016-02-18Support custom string propertiesMatthias 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
2016-02-17Set port centrally and allow server overrideMatthias Vogelgesang
2016-02-16Refactor server code into ucad.cMatthias Vogelgesang
2016-02-16Add readout and trigger APIMatthias Vogelgesang
2016-02-16Initial commitMatthias Vogelgesang