Skip to content

Commit

Permalink
Update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tchaloupka committed Oct 11, 2024
1 parent 65ec326 commit 8cfde1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ license "BSL-1.0"
targetType "library"

dependency "vibe-d:tls" version="~>0.8"
dependency "vibe-d:stream" version="~>0.8"
dependency "vibe-d:utils" version="~>0.8"
3 changes: 2 additions & 1 deletion source/mqttd/client.d
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ import std.string : format, representation;
import std.traits;
import std.typecons : Flag, No, Yes;

import vibe.container.ringbuffer : RingBuffer;
import vibe.core.concurrency;
import vibe.core.log;
import vibe.core.net: TCPConnection;
Expand Down Expand Up @@ -1120,7 +1121,7 @@ private:
Session _session;
Task _listener, _dispatcher;
Serializer!(Appender!(ubyte[])) _sendBuffer;
FixedRingBuffer!ubyte _readBuffer;
RingBuffer!ubyte _readBuffer;
ubyte[] _packetBuffer;
bool _disconnecting;
Timer _conAckTimer, _subAckTimer, _unsubAckTimer, _pingReqTimer, _pingRespTimer, _reconnectTimer;
Expand Down

0 comments on commit 8cfde1a

Please sign in to comment.