sajanagr has asked for the wisdom of the Perl Monks concerning the following question:
I have a server and client script working perfectly fine.
Now, I want to create a daemon for my server, so I made an entry in /etc/xinetd.d/sajan as ->
# default: on service sajan { port = 7890 socket_type = stream wait = no user = root server = /tmp/server.pl log_on_success += USERID log_on_failure += USERID disable = no }
Now, when i use the client script to access the server I get error as "Address already in use" at bind() in my server.pl code.
I am doing something wrong somewhere, I need some guidance here.
Thanks for your help in advance.
|
|---|