shanks
shanks

Reputation:

winsock socket error

followin error in vb6 code:

1) Error(10022) Socket not bound, invalid address or listen is not invoked prior to accept

2) Error 10048 - Address in Use

Upvotes: 1

Views: 1864

Answers (1)

AngryHacker
AngryHacker

Reputation: 61596

  • Error #1 occurs when you haven't bound your TCP control to a port, but called .Listen method

  • Error #2 occurs when you attempted to listen on a port that is already being listened to by another program or process.

Upvotes: 1

Related Questions