File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -187,3 +187,7 @@ import java.nio.ByteOrder;
187187 int headerValue = ByteBuffer.wrap(header).order(ByteOrder.nativeOrder()).getInt();
188188# This is a very bodgy workaround to the fact that the pip install of the archive doesn't seem to work properly now on Travis
189189 "uest\032\036.ola.rpc.STREAMING_NO_RESPONSEB\006\200\001"
190+ s1 = "one\"two\\three/four\bfive\fsix\nseven\reight\tnine";
191+ string("one\\\"two\\\\three\\/four\\bfive\\fsix\\nseven\\reight\\tnine"),
192+ s1 = "one\"two\\three/four\bfive\fsix\nseven\reight\tnine";
193+ string("one\\\"two\\\\three\\/four\\bfive\\fsix\\nseven\\reight\\tnine"),
Original file line number Diff line number Diff line change @@ -880,7 +880,7 @@ void OladHTTPServer::HandlePortsForUniverse(
880880 * @brief Handle the list of candidate ports
881881 * @param response the HTTPResponse that is associated with the request.
882882 * @param result the result of the API call
883- * @param devices the possbile devices & ports
883+ * @param devices the possible devices & ports
884884 */
885885void OladHTTPServer::HandleCandidatePorts (
886886 HTTPResponse *response,
Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ class ArtNetNodeImpl {
252252 * @brief Send some DMX data
253253 * @param port_id port to send on
254254 * @param buffer the DMX data
255- * @return true if it was send successfully, false otherwise
255+ * @return true if it was sent successfully, false otherwise
256256 */
257257 bool SendDMX (uint8_t port_id, const ola::DmxBuffer &buffer);
258258
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ bool EspNetNode::SendPoll(bool full_poll) {
220220 * Send some DMX data
221221 * @param universe the id of the universe to send
222222 * @param buffer the DMX data
223- * @return true if it was send successfully, false otherwise
223+ * @return true if it was sent successfully, false otherwise
224224 */
225225bool EspNetNode::SendDMX (uint8_t universe, const ola::DmxBuffer &buffer) {
226226 if (!m_running)
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ bool PathportNode::SendArpReply() {
261261/*
262262 * Send some DMX data
263263 * @param buffer the DMX data
264- * @return true if it was send successfully, false otherwise
264+ * @return true if it was sent successfully, false otherwise
265265 */
266266bool PathportNode::SendDMX (unsigned int universe, const DmxBuffer &buffer) {
267267 if (!m_running)
Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ bool SandNetNode::SendAdvertisement() {
291291/*
292292 * Send some DMX data
293293 * @param buffer the DMX data
294- * @return true if it was send successfully, false otherwise
294+ * @return true if it was sent successfully, false otherwise
295295 */
296296bool SandNetNode::SendDMX (uint8_t port_id, const DmxBuffer &buffer) {
297297 if (!m_running || port_id >= SANDNET_MAX_PORTS)
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ void ShowNetNode::SetName(const string &name) {
130130 * Send some DMX data
131131 * @param universe the id of the universe to send
132132 * @param buffer the DMX data
133- * @return true if it was send successfully, false otherwise
133+ * @return true if it was sent successfully, false otherwise
134134 */
135135bool ShowNetNode::SendDMX (unsigned int universe,
136136 const ola::DmxBuffer &buffer) {
You can’t perform that action at this time.
0 commit comments