summaryrefslogtreecommitdiff
path: root/uca-net-camera.c
AgeCommit message (Collapse)Author
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-10Support int64 and uint64 propertiesMatthias Vogelgesang
2017-10-10Improve custom enum handlingMatthias Vogelgesang
2017-10-10Add warning if we cannot deserialize a propertyMatthias Vogelgesang
2016-12-23Fix #6: correctly check g_strcmp0Matthias 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-07-19Allow setting host via UCA_NET_HOSTMatthias 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-17Implement outstanding write requestMatthias Vogelgesang
2016-02-17Remove obsolete function declarationsMatthias Vogelgesang
2016-02-17Merge uca-net-client.c into uca-net-camera.cMatthias Vogelgesang
2016-02-17Set port centrally and allow server overrideMatthias Vogelgesang
2016-02-16Set host and connect in constructed methodMatthias Vogelgesang
2016-02-16Initial commitMatthias Vogelgesang