summaryrefslogtreecommitdiffstats
path: root/uca-net-camera.c
Commit message (Collapse)AuthorAgeFilesLines
* Pass is_recording and is_readout to serverMarcus Zuber2020-03-311-0/+2
|
* Fix hostMarcus Zuber2020-03-301-5/+3
|
* Fix a few minor leaksMatthias Vogelgesang2018-06-261-2/+2
|
* Fix #10: transmit enum value nick namesMatthias Vogelgesang2018-06-191-5/+2
|
* Support more property typesMatthias Vogelgesang2018-05-251-0/+12
|
* Transmit enum value namesMatthias Vogelgesang2017-12-081-2/+1
|
* Send flag that denotes serialization validityMatthias Vogelgesang2017-10-121-6/+13
| | | | | | 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.
* Support int64 and uint64 propertiesMatthias Vogelgesang2017-10-101-0/+2
|
* Improve custom enum handlingMatthias Vogelgesang2017-10-101-0/+24
|
* Add warning if we cannot deserialize a propertyMatthias Vogelgesang2017-10-101-0/+1
|
* Fix #6: correctly check g_strcmp0Matthias Vogelgesang2016-12-231-1/+1
|
* Fix #3: use one socket connect per requestMatthias Vogelgesang2016-12-161-43/+51
| | | | | | | | | | | 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.
* Allow setting host via UCA_NET_HOSTMatthias Vogelgesang2016-07-191-3/+8
|
* Use current exported symbol nameMatthias Vogelgesang2016-03-161-1/+1
| | | | See https://github.com/ufo-kit/libuca/commit/6c2c19d1101a043cc0b05065447cc9321ed32ac0
* Do not throw assertion in case of mismatched dataMatthias Vogelgesang2016-02-181-2/+2
|
* Read entire replyMatthias Vogelgesang2016-02-181-1/+1
|
* Fix segfault for particular reply conditionMatthias Vogelgesang2016-02-181-1/+1
|
* Support custom string propertiesMatthias Vogelgesang2016-02-181-0/+4
|
* Fix segfault if server is not runningMatthias Vogelgesang2016-02-181-4/+6
|
* Proxy custom camera properties to the clientMatthias Vogelgesang2016-02-181-0/+58
|
* Implement outstanding write requestMatthias Vogelgesang2016-02-171-0/+30
|
* Remove obsolete function declarationsMatthias Vogelgesang2016-02-171-2/+2
|
* Merge uca-net-client.c into uca-net-camera.cMatthias Vogelgesang2016-02-171-7/+199
|
* Set port centrally and allow server overrideMatthias Vogelgesang2016-02-171-1/+2
|
* Set host and connect in constructed methodMatthias Vogelgesang2016-02-161-5/+14
|
* Initial commitMatthias Vogelgesang2016-02-161-0/+296