[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


please help me what's wrong ? This is my first socket...

<< Back to: comp.os.vxworks Frequently Asked Questions (FAQ) [LONG]

Question by lbtianya
Submitted on 3/24/2004
Related FAQ: comp.os.vxworks Frequently Asked Questions (FAQ) [LONG]
Rating: Not yet rated Rate this question: Vote
please help me what's wrong ?
    This is my first socket program in vxworks, but now it return error:0x3d
what 's mean? i didn't connect the server in windows 2000,other do.
this is my programe fragment:

      char* serverName = "127.0.0.1";
     int Socket = socket(AF_INET, SOCK_STREAM, 0);
     if ( Socket==error )
      {
              perror ("Socket create error");
              return (ERROR);  
      }
     struct sockaddr_in Addr;
     int    sockAddrSize = sizeof (struct sockaddr_in);  
     bzero ((char *) &Addr, sockAddrSize);

     Addr.sin_family = AF_INET;
     Addr.sin_port = htons(1981);
     Addr.sin_len = (u_char) sockAddrSize;  
  
    if(((Addr.sin_addr.s_addr = inet_addr (serverName)) == ERROR) &&
        ((Addr.sin_addr.s_addr = hostGetByName (serverName)) == ERROR) )  
      {        
          perror ("unknown server name");        
           close (Socket);      
          return (ERROR);        
      }
     if (connect (Socket, (struct sockaddr *) &Addr,sockAddrSize ) == ERROR)  
      {      
             perror ("connect fail!");
             close (Socket);
             return (ERROR);
      }  
      
> i will grateful for whosoever replying me


Answer by matt
Submitted on 2/24/2005
Rating: Not yet rated Rate this answer: Vote
Finally, did you succeed in creating a socket through VxWorks?
I would be interested by your answer...

 

Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: comp.os.vxworks Frequently Asked Questions (FAQ) [LONG]


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.