- 论坛徽章:
- 0
|
我的这两段socket程序无法连接
- [b]/*
- * Socket address, internet style.
- */
- struct sockaddr_in {
- short sin_family;
- u_short sin_port;
- struct in_addr sin_addr;
- char sin_zero[8];
- };[/b]
- #include <stdio.h>;
- #include <stdlib.h>;
- #include <unistd.h>;
- #include <sys/types.h>;
- #include <sys/socket.h>;
- #include <netinet/in.h>;
- int main(int argc, char*argv[] )
- {
- int i,sz;//**错误** *buf;
- char buf[1024+1] = "";
- long s,port=7797;//,port是端口号
- long nClient=0;
- struct sockaddr_in sa;
- sz=sizeof(sa);//sockaddr_in的长度
-
- bzero(&sa,sizeof(sa));
- sa.sin_family=AF_INET;
- sa.sin_addr.s_addr=htonl(INADDR_ANY);
- sa.sin_port=htons(port);// **错误** htonl(port);
-
- s=socket(AF_INET,SOCK_STREAM,0);
- bind(s,(struct sockaddr*)&sa,sz);
- listen(s,5);
- nClient=accept(s,(struct sockaddr *)&sa,&sz);
- sz=recv(nClient,buf,1024,0);
- if ( sz >; 0 )
- write(0,buf,sz);
- else
- perror("recv");
-
- close(s);
- close(nClient);
- return 0;
- }
- #include <stdio.h>;
- #include <stdlib.h>;
- #include <unistd.h>;
- #include <sys/types.h>;
- #include <sys/socket.h>;
- #include <netinet/in.h>;
- int main(int argc, char*argv[])
- {
- int s,i;
- long port=7797;//端口
- struct sockaddr_in sa;
- s=socket(AF_INET,SOCK_STREAM,0);
-
- bzero(&sa,sizeof(sa));
- sa.sin_family=AF_INET;
- sa.sin_addr.s_addr=(unsigned long)inet_addr("127.0.0.1");
- sa.sin_port=htons(port);//**错误** htonl(port); 请注意这里
-
- i=connect(s,(struct sockaddr *)&sa,sizeof(sa));
- printf("%d\n",i);//**错误** 在这里总是显示-1 现在不会了,呵呵.
- if ( send(s,"hello world!\n",14,0) < 0 )
- perror ( "write" );
- close(s);
- return 0;
- }
复制代码 [/code] |
|