Andy Pan / Jul 2nd, 2020 /
New approach to create server sockets
Leverage system calls instead of `net` package to create sockets
About this change
Benefit from system calls provided by Go standard library, server listener sockets inside gnet have gotten rid of the Go net
package eventually,
there are no more methods from net
package involved in the process of creating the listener of server socket, all by raw system calls.