Skip to content

Commit

Permalink
change packet data size limit
Browse files Browse the repository at this point in the history
  • Loading branch information
hideakitai committed Jan 15, 2019
1 parent c0a529c commit 9ebc937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArduinoOSC/lib/oscpkt.hh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ namespace oscpkt
{
struct ArgumentType { size_t first; size_t second; };
using ArgumentQueue = RingBuffer<ArgumentType, 3>;
using Blob = RingBuffer<char, 128>;
using Blob = RingBuffer<char, 64>;
class Message;
using MessageQueue = RingBuffer<Message, 1>;
using MessageIterator = Message*;
Expand Down

0 comments on commit 9ebc937

Please sign in to comment.