![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| What's The Easiest Route To Creating A Unix Executable File for Terminal? | unimachead | OS X (Apple) | 10 | 2 Weeks Ago 09:40 AM |
| creating executable for every C file | compbug | UNIX for Dummies Questions & Answers | 7 | 09-30-2007 01:03 PM |
| how to call c executable inside c program?? | zedex | High Level Programming | 3 | 02-28-2007 10:34 AM |
| launch an executable from a C++ program | nadiamihu | High Level Programming | 2 | 11-03-2006 02:59 AM |
| Creating a client handle in RPC | pic | High Level Programming | 1 | 05-02-2006 07:05 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
problem in creating executable for a client program
Hi,
I am trying to run simple client server c program in unix.At the compling stage server is creating an executable but the client is not. below is the link to the source codes: http://www.cs.rpi.edu/courses/sysprog/sockets/server.c http://www.cs.rpi.edu/courses/sysprog/sockets/client.c I am getting following message client.c: In function `main': client.c:39: warning: passing arg 2 of `connect' from incompatible pointer type client.c:53:2: warning: no newline at end of file Undefined first referenced symbol in file gethostbyname /var/tmp//ccgXDT5X.o (symbol belongs to implicit dependency /usr/lib/libnsl.so.1) ld: fatal: Symbol referencing errors. No output written to ss1 collect2: ld returned 1 exit status Can any one solve this? |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
First off this looks like homework - which is not allowed on the forums.
Second, you have a linker error. This means that the command you used to compile the code either could not find the correct library (a .so file or a .o file or a .a file), or the library does not exist on your machine, or a library is old and doesn't have the symbol (another name for a function) in it. |
|
#3
|
||||
|
||||
|
Hey dude , I've just compiled your client source code , and it's working fine , except .. go and modify this : ( on connect ).
Code:
if ( connect(sockfd,(struct sockaddr *) &serv_addr,sizeof(serv_addr)) < 0)
error("ERROR connecting");
P.S : I have try to program .. |
||||
| Google The UNIX and Linux Forums |