File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -898,17 +898,17 @@ else {
898898 return this ;
899899 }
900900 @trusted
901- override ptrdiff_t send (const (void )[] buf, SocketFlags flags) scope {
901+ override ptrdiff_t send (scope const (void )[] buf, SocketFlags flags) scope {
902902 return openssl.SSL_write(ssl, buf.ptr, cast (uint ) buf.length);
903903 }
904- override ptrdiff_t send (const (void )[] buf) scope {
904+ override ptrdiff_t send (scope const (void )[] buf) scope {
905905 return send (buf, SocketFlags.NONE );
906906 }
907907 @trusted
908908 override ptrdiff_t receive (void [] buf, SocketFlags flags) scope {
909909 return openssl.SSL_read(ssl, buf.ptr, cast (int )buf.length);
910910 }
911- override ptrdiff_t receive (void [] buf) scope {
911+ override ptrdiff_t receive (scope void [] buf) scope {
912912 return receive (buf, SocketFlags.NONE );
913913 }
914914 this (AddressFamily af, SocketType type = SocketType.STREAM , SSLOptions opts = SSLOptions()) {
You can’t perform that action at this time.
0 commit comments