bigloo.foreign.bgl_socket_accept C# (CSharp) Method

bgl_socket_accept() public static method

public static bgl_socket_accept ( socket s, bool errp, byte inbuf, byte outbuf ) : socket
s socket
errp bool
inbuf byte
outbuf byte
return socket
        public static socket bgl_socket_accept( socket  s,
					      bool errp,
					      byte[] inbuf,
					      byte[] outbuf )
        {
            return ((server_socket)s).accept( inbuf, outbuf, errp );
        }
foreign