zoukankan      html  css  js  c++  java
  • linux socket TCP UDP bind 同义IP和port

    //TCP and UDP can bind to the same IP & port.
    
    #include <sys/types.h>
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <arpa/inet.h>
    #include <assert.h>
    #include <stdio.h>
    #include <unistd.h>
    #include <errno.h>
    #include <string.h>
    #include <fcntl.h>
    #include <stdlib.h>
    #include <sys/epoll.h>
    #include <pthread.h>
    
    #define MAX_EVENT_NUMBER 1024
    #define TCP_BUFFER_SIZE 512
    #define UDP_BUFFER_SIZE 1024
    
    int setnonblocking( int fd )
    {
        int old_option = fcntl( fd, F_GETFL );
        int new_option = old_option | O_NONBLOCK;
        fcntl( fd, F_SETFL, new_option );
        return old_option;
    }
    
    void addfd( int epollfd, int fd )
    {
        epoll_event event;
        event.data.fd = fd;
        //event.events = EPOLLIN | EPOLLET;
        event.events = EPOLLIN; //concern about read event
        epoll_ctl( epollfd, EPOLL_CTL_ADD, fd, &event );
        setnonblocking( fd );
    }
    
    int main( int argc, char* argv[] )
    {
        if( argc <= 2 )
        {
            printf( "usage: %s ip_address port_number
    ", basename( argv[0] ) );
            return 1;
        }
        const char* ip = argv[1];
        int port = atoi( argv[2] );
    
        int ret = 0;
        struct sockaddr_in address;
        bzero( &address, sizeof( address ) );
        address.sin_family = AF_INET;
        inet_pton( AF_INET, ip, &address.sin_addr );
        address.sin_port = htons( port );
    
        int listenfd = socket( PF_INET, SOCK_STREAM, 0 );
        assert( listenfd >= 0 );
    
        ret = bind( listenfd, ( struct sockaddr* )&address, sizeof( address ) );
        assert( ret != -1 );
    
        ret = listen( listenfd, 5 );
        assert( ret != -1 );
    
        bzero( &address, sizeof( address ) );
        address.sin_family = AF_INET;
        inet_pton( AF_INET, ip, &address.sin_addr );
        address.sin_port = htons( port );
        int udpfd = socket( PF_INET, SOCK_DGRAM, 0 );
        assert( udpfd >= 0 );
    
        ret = bind( udpfd, ( struct sockaddr* )&address, sizeof( address ) );
        assert( ret != -1 );
    
        epoll_event events[ MAX_EVENT_NUMBER ];
        int epollfd = epoll_create( 5 );
        assert( epollfd != -1 );
        addfd( epollfd, listenfd );
        addfd( epollfd, udpfd );
    
        while( 1 )
        {
            int number = epoll_wait( epollfd, events, MAX_EVENT_NUMBER, -1 );
            if ( number < 0 )
            {
                printf( "epoll failure
    " );
                break;
            }
        
            for ( int i = 0; i < number; i++ )
            {
                int sockfd = events[i].data.fd;
                if ( sockfd == listenfd )
                {
                    struct sockaddr_in client_address;
                    socklen_t client_addrlength = sizeof( client_address );
                    int connfd = accept( listenfd, ( struct sockaddr* )&client_address, &client_addrlength );
                    if ( connfd < 0 )
        			{
            			printf( "errno is: %d
    ", errno );
        			}
        			else
        			{
        				addfd( epollfd, connfd );
                    	char remote[INET_ADDRSTRLEN ];
            			printf( "connected client ip: %s and port: %d
    ", 
                			inet_ntop( AF_INET, &client_address.sin_addr, remote, INET_ADDRSTRLEN ), ntohs( client_address.sin_port ) );
        			}
                }
                //UDP is readable
                else if ( sockfd == udpfd )
                {
                    char buf[ UDP_BUFFER_SIZE ];
                    memset( buf, '', UDP_BUFFER_SIZE );
                    struct sockaddr_in client_address;
                    socklen_t client_addrlength = sizeof( client_address );
    
                    ret = recvfrom( udpfd, buf, UDP_BUFFER_SIZE-1, 0, ( struct sockaddr* )&client_address, &client_addrlength );
                    if( ret > 0 )
                    {
                        sendto( udpfd, buf, UDP_BUFFER_SIZE-1, 0, ( struct sockaddr* )&client_address, client_addrlength );
                    }
                    else if (ret == 0)
                    {
                    	printf("client peer closed().
    ");
                    	//shutdown(udpfd);   //udp套接字而言shutdown毫无意义
                    	close(udpfd);
                    }
                    else
                    {
                    	printf("UDP recvfrom ran into error: 
    ", errno);
                    	//handle error....
                    }
                }
                //TCP connfd is readable
                else if ( events[i].events & EPOLLIN )
                {
                    char buf[ TCP_BUFFER_SIZE ];
                    while( 1 )
                    {
                        memset( buf, '', TCP_BUFFER_SIZE );
                        //sockfd is nonblock
                        ret = recv( sockfd, buf, TCP_BUFFER_SIZE-1, 0 );
                        if( ret < 0 )
                        {
                            if( ( errno == EAGAIN ) || ( errno == EWOULDBLOCK ) || (errno == EINTR) )
                            {
                                break;
                            }
                            else
                            {
                            	printf("TCP recv ran into error, close() socket.
    ");
                            	close( sockfd );
                            	break;
                            }
                        }
                        else if( ret == 0 ) //peer called close() and sent a FIN to here
                        {
                        	printf("TCP recv return 0: peer client close(), so close() self.
    ");
                            close( sockfd );
                        }
                        else  //normal, send back what we have received! ECHO~
                        {
                            send( sockfd, buf, ret, 0 );
                        }
                    }
                }
                else
                {
                    printf( "something else happened 
    " );
                }
            }
        }
    
        close( listenfd );
        return 0;
    }
    

      

  • 相关阅读:
    mysql更新语句中的safe_mode
    MySQL数据类型详解
    刚更新完版本就炸了:java.lang.NoClassDefFoundError: org/apache/commons/io/output/UnsynchronizedByteArrayOutputStream
    微信支付分创建支付分订单+签名+验签
    根据序列号加密生产4*4的密码,如:X9PL-TERY-NOZN-GMF1
    对称加密:AES
    MySQL按中文排序
    腾讯云COS分片上传
    Linux中jar包指定端口、配置文件启动并记录日志
    Java8新特性两个关联集合合并成父子级
  • 原文地址:https://www.cnblogs.com/kex1n/p/7461216.html
Copyright © 2011-2022 走看看