Git Product home page Git Product logo

eossynclib's People

Contributors

dmeltzer avatar hinrichsenhans avatar mizplusplus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

eossynclib's Issues

Crash

Sometime when too much frequent requests are send to ETC nomad software the application get Crashed in this function "void AddDebug(const std::string &text) {Add(LOG_MSG_TYPE_DEBUG,text);"
The crash statement is reported as
EOS: EosLog::Add(EosLog::EnumLogMsgType, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator > const&) + 130

Please help me in this.

use of non-zero terminated string

OSCParser.cpp - Line 2103:
OSCPacketWriter *packet = CreatePacketWriterForString(str);

should use zero-terminated string "copy" of non-zero-terminated string "str".
may lead to errors and crashes.

should be:
OSCPacketWriter *packet = CreatePacketWriterForString(copy);

iPhone/iPad - prevent SIGPIPE signal for TCP disconnect

I am using this library on a Universal Application (iPhone/iPad). It works fine on 32-bit architecture but when I run that application on 64-bit architecture (iPad Air , iPhone 5, 6, 6+) it repeatedly crashes with SIGPIPE exception. Please help me in this. I have fixes that issue by supporting only 32-bit architecture but Apple does not allow me to upload an application that supports only 32-bit architecture. I have downloaded this Library almost 5 months earlier. Have you fixes this issue in the library?

OpenFrameworks compatibility?

Hello, I am looking to use this library in openFrameworks - however, I am running into some issues. Mostly just my experience level. Is this compatible with openFrameworks / IOS? And I am having trouble just using it to set up a TCP connection to get and send OSC commands (apart from the subscribe example)

OSCArgument::GetString and use of snprintf

Hi.

Compiling EosSyncLib with MinGW shows a warning for:

snprintf(buf, sizeof(buf), "%lld", n);
unknown conversion type character 'l' in format [-Wformat=]
too many arguments for format [-Wformat-extra-args]

following this stackoverflow:
https://stackoverflow.com/questions/13590735/printf-long-long-int-in-c-with-gcc
for MinGW this line should look like this:
snprintf(buf, sizeof(buf), "%I64d", n);

which would need the use of some #ifdef...

but i wonder if this is the right approach to convert numbers to a std::string, is there a special reason why not just using:
str = std::to_string(n);
?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.