linux網絡編程二十:socket選項:SO_RCVTIMEO和SO_SNDTIMEO

SO_RCVTIMEO和SO_SNDTIMEO ,它們分別用來設置socket接收數據超時時間和發送數據超時時間。linux

所以,這兩個選項僅對與數據收發相關的系統調用有效,這些系統調用包括:send, sendmsg, recv, recvmsg, accept, connect 。編程

這兩個選項設置後,若超時, 返回-1,並設置errno爲EAGAIN或EWOULDBLOCK.服務器

其中connect超時的話,也是返回-1, 但errno設置爲EINPROGRESSsocket

1. 代碼:設置connect超時時間性能

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <assert.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
 
//超時鏈接
int timeout_connect(const char *ip, int port, int time);
 
int main(int argc, char **argv)
{
    if (argc != 3) {
        fprintf(stderr, "Usage: %s ip port\n", argv[0]);
        return 1;
    }
    
    const char *ip = argv[1];
    int port = atoi(argv[2]);
    
    int sockfd = timeout_connect(ip, port, 10);
    if (sockfd < 0)
        return 1;
    
    
    return 0;
}
 
int timeout_connect(const char *ip, int port, int time)
{
    int ret = 0;
    int error;
    
    struct sockaddr_in address;
    bzero(&address, sizeof(address));
    address.sin_family = AF_INET;
    address.sin_port = htons(port);
    inet_pton(AF_INET, ip, &address.sin_addr);
    
    int sockfd = socket(PF_INET, SOCK_STREAM, 0);
    if (sockfd == -1)
        return -1;
    
    //超時時間
    struct timeval timeout;
    timeout.tv_sec = time;
    timeout.tv_usec = 0;
    
    socklen_t len = sizeof(timeout);
    ret = setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &timeout, len);
    if (ret == -1) {
        error = errno;
        while ((close(sockfd) == -1) && (errno == EINTR));
        errno = error;
        return -1;
    }
    
    ret = connect(sockfd, (struct sockaddr*)&address, sizeof(address));
    if (ret == -1) {
        if (errno == EINPROGRESS) {
            printf("connecting timeout\n");
            return -1;
        }
        
        printf("error occur when connecting to server\n");
        return -1;
    }
    
    char buffer[1024];
    memset(buffer, '\0', 1024);
    ret = recv(sockfd, buffer, 1024, 0);
    
    printf("recv %d bytes, buf: %s\n", ret, buffer);
    
    return sockfd;
}.net


參考:《linux高性能服務器編程》server


--------------------- 
做者:jasonliuvip 
來源:CSDN 
原文:https://blog.csdn.net/jasonliuvip/article/details/23567843 
版權聲明:本文爲博主原創文章,轉載請附上博文連接!blog

相關文章
相關標籤/搜索