There is an absolutely standard golang tls server.

tls.Listen () returned net.listener from there, accept net.conn which then goes to the function. In it it goes to netpoll.handle () and from there Desc goes to poller.start ().

The problem is that when connecting the server crash with segfault. The question is what is happening and how to fix it.

  • Apparently, some C-bindings are used, which cause segfault. Otherwise, I would like to look at the code. - Ivan Black

0