When I try to bind port 80 to a socket in c, i always get the error, that I don’t have permission to use this port. is there an easy way to get this permission?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Usually only the superuser (root) can bind to ‘privileged’ ports (i.e. those port numbers below 1024).
This means that you either have to run your program as root or make your executable ‘suid root’.
Both of these have security consequences so you may want to consider using the suid approach and relinquishing superuser privileges once the bind call has been made.