We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8b0369 commit 7af8cbfCopy full SHA for 7af8cbf
src/ssl.jl
@@ -60,18 +60,13 @@ end
60
61
function on_bio_stream_write(bio::BIO, in::Ptr{Cchar}, inlen::Cint)::Cint
62
try
63
-<<<<<<< Updated upstream
64
- io = bio_get_data(bio)::TCPSocket
65
- written = unsafe_write(io, in, inlen)
66
-=======
67
bio_clear_flags(bio)
68
io = bio_get_data(bio)
69
if io isa TCPSocket
70
written = unsafe_write(io, in, inlen)
71
else
72
73
end
74
->>>>>>> Stashed changes
75
return Cint(written)
76
catch e
77
# we don't want to throw a Julia exception from a C callback
0 commit comments