vb .net opening a socket into secure unix

H

Holly

I have been trying to open a socket into secure unix. I have used the
following code and tried with every protocol available in .net but
cannot even get passed this line of code due to an incompatibility of
the address and the protocol. Does anyone have any suggestions.

m_objClientSocket = New Socket(AddressFamily.Unix, SocketType.Stream,
ProtocolType.Unspecified)

Thanks
Holly
 
M

Mike Lowery

Holly said:
I have been trying to open a socket into secure unix. I have used the
following code and tried with every protocol available in .net but
cannot even get passed this line of code due to an incompatibility of
the address and the protocol. Does anyone have any suggestions.

m_objClientSocket = New Socket(AddressFamily.Unix, SocketType.Stream,
ProtocolType.Unspecified)

My guess is that you need to use SSH and I don't believe .Net supports that
protocol (even though it's an open standard.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top