Hello all, I'm hoping someone can help newbie me.
I have been trying to write a quick VB .NET program to connect to an IRC server, just to see how sockets work. The problem is every time I do a new tcpclient connect I get the following error:
An unhandled exception of type 'System.Net.Sockets.SocketException' occurred in system.dll
Additional information: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full
---
This happens on ANY connect. Here was my simple code:
mobjClient = New TcpClient("irc.efnet.nl", 6667)
Nothing to hard there. Can anyone tell me why this would happen?
Ray
I have been trying to write a quick VB .NET program to connect to an IRC server, just to see how sockets work. The problem is every time I do a new tcpclient connect I get the following error:
An unhandled exception of type 'System.Net.Sockets.SocketException' occurred in system.dll
Additional information: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full
---
This happens on ANY connect. Here was my simple code:
mobjClient = New TcpClient("irc.efnet.nl", 6667)
Nothing to hard there. Can anyone tell me why this would happen?
Ray