- 论坛徽章:
- 0
|
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#define PRINTD(data) printf("")
int socket_test();
main()
{
int numb;
for(numb=10;numb<100;numb++)
{
socket_test(numb);
}
}
int socket_test(int i)
{
struct sockaddr_in socket_addr;
int socket_data;
socket_data=socket(AF_INET,SOCK_STREAM,0);
if(!socket_data)
{
printf("socket create error!the number is %d\n",socket_data);
exit(0);
}
socket_addr.sin_family=AF_INET;
socket_addr.sin_addr.s_addr=inet_addr("10.222.1.41");
socket_addr.sin_port=htons(i);
bzero(&(socket_addr.sin_zero));
if(connect(socket_data,(struct sockaddr *)&socket_addr,sizeof(socket_addr))>=0)
{
printf("the port is open : %d\n",i);
shutdown(socket_data,2);
}
else
{printf("the port is close:%d \n",i);
shutdown(socket_data,2);
}
} |
|