ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
i have just started learning unix. I an making a client server program in c. two command line arguments argv[2] , argv[3] will have the ip address and port no , i m compiling the programm by gcc -lsocket 127.0.0.1 15000 a binding error is comming. Is there some problem in the following code
server.sin_port=htons(argv[3]);
server.sin_addr=htonl(argv[2]);
i am not able to figure it out
Edit: assuming by "program mane", you mean the filename, e.g. "program.c", then yes, of course you need to pass that to gcc. Otherwise, how will it know which file you want to compile?
hi
The program work when i give default ip (127.0.0.1) but when i use host name of server at client side(gethostbyname() ) it gives segmentation error while if i use the ip at client , connection error., occur.
i am using INADDR_ANY at server side cant i use server.sin_addr.s_addr=htonl(atoi(argv[1])); where server is struct sockaddr_in type and argv[1] is the ip address of server.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.