Skip to content

Commit ca52b86

Browse files
dkorpelibuclaw
authored andcommitted
Fix ConnectionBase.d
``` ./src/swarm/neo/connection/ConnectionBase.d(757): Error: constructor `swarm.neo.connection.ConnectionBase.ConnectionBase.this` missing initializer for immutable field `no_delay` protected this ( AddressIPSocket!() socket, EpollSelectDispatcher epoll ) ^ ```
1 parent f6ee012 commit ca52b86

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/swarm/neo/connection/ConnectionBase.d

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,7 @@ abstract class ConnectionBase: ISelectClient
758758
{
759759
this.socket = socket;
760760
this.epoll = epoll;
761+
this.no_delay = false;
761762
this.protocol_error_ = new ProtocolError;
762763
this.parser.e = this.protocol_error_;
763764
this.receiver = new MessageReceiver(this.socket, this.protocol_error_);

0 commit comments

Comments
 (0)