2012-11-10 267 views
0

我試圖讓我的雙腳與網絡編程溼。我創建了一個服務器,它接受來自Web客戶端的連接。套接字未能接受客戶端?

在某個時刻(我記不清它是什麼時候了),並且對於我的生活,我無法得到它的修復。

有人能夠給我提供一些指針嗎? (沒有雙關語意)

我已經嘗試了所有存在,讀取整個網頁,包括gnuclibrarydocumentation(我在Linux上),但仍然沒有運氣。

編輯:問題說明:我的客戶端軟件管理進行連接,但服務器軟件沒有這份報告,而且似乎停留在accept()函數得到。

我的代碼:

#include <sys/socket.h> 
#include <netinet/in.h> 
#include <arpa/inet.h> 
#include <stdio.h> 
#include <stdlib.h> 
#include <unistd.h> 
#include "lib/error.h" 
#include <string.h> 
#include <sys/types.h> 
#include <time.h> 

int main(int argc, char *argv[]) 
{ 
    int socketfd = 0, connfd = 0; // socket, and connection file descriptors 
    struct sockaddr_in serv_addr; // struct that will get filled with host info 
    struct sockaddr_in cli_addr; // struct that will get filled with peer info 
    int status; // Used for various status controling and error messaging throughout the program 

    char sendBuff[1025]; // buffer to allow for storage of items to be sent 
    socklen_t cli_size = sizeof(cli_addr); 
    time_t ticks; 

    socketfd = socket(AF_INET, SOCK_STREAM, 0); // Creating a socket 
    if (socketfd == -1) error("Failed to create socket.", 4); 

    memset(&serv_addr, '0', sizeof(serv_addr)); // zeroing out the location of serv_addr 
    memset(&cli_addr, '0', sizeof(cli_addr)); // zeroing out the location of serv_addr 
    memset(sendBuff, '0', sizeof(sendBuff)); // zeroing out the locaiton of sendBuff 

    serv_addr.sin_family = AF_INET; 
    serv_addr.sin_addr.s_addr = htonl(INADDR_ANY); 
    serv_addr.sin_port = htons(5000); 

    status = bind(socketfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)); 
    if (status == -1) error("Failed to bind socket.", 4); 

    listen(socketfd, 10); 

    while(1) 
    { 
     connfd = accept(socketfd, (struct sockaddr *) &cli_addr, (socklen_t *) &cli_size); 
     if (connfd == -1) error("Failed during accepting the peer connection at socket.", 3); 

     printf("Client connected: %d:%d", cli_addr.sin_addr.s_addr, cli_addr.sin_port); 

     close(connfd); 
     sleep(1); 
    } 

    return 0; 
} 
+2

我不知道這是否完全相關,但是你的memset沒有清零內存 - 它將它設置爲字符「0」的ASCII值,這是非常不同的。 –

+0

@ChrisHayes真的嗎?這不是我第一次看到這個,但從來沒有真正研究過它,我認爲它正在清理記憶。但我必須指出,這個'0'讓我陷入了思考。 – NlightNFotis

+3

你可以在'printf'之後調用'fflush(stdout)'嗎? – cnicutar

回答

2

正如評論猜測,問題是緩衝。簡而言之,客戶端連接,accept返回一個有效的套接字,並調用printf,但輸出根本無法進入屏幕。

由於羅迪提到,添加一個換行符可能會解決它因爲許多實現stdout是行緩衝,即當你寫一個換行符,它會自動刷新一切。然而,這不是標準所要求的,所以確保輸出的最安全最清潔的方式是去fflush

正如Chris Hayes所提到的,您可能需要memset(&serv_addr, 0, sizeof serv_addr),並且您不需要(socklen_t *) &cli_size中的演員。