>I am running a server and different clients which connect to
>this server (On HP800 machine using HP 10.10). All clients
>except one are working fine. That client is giving an error
>while calling bind saying "bind:Cant assign requested address"
>Can anyone tell me how should I proceed to debug this problem?
>The code used by all clients is similar.
You really haven't given enough information to go on here. Post
some code, or describe what the client is trying to do in greater
detail.
Your error should correspond to EADDRNOTAVAIL. I'm not familiar with
HPs bind(), so 'man bind' and check to see under what conditions this
error is returned.
I'd check to see that you are calling bind() with sane
arguments.
Does the client actually need to connect from a specific local
address? If not, you don't have to bind() at all.
-Craig