18

这有点奇怪。我的代码没有输出我认为它应该输出的内容。我在各个阶段添加了一些打印语句,看看哪里出了问题。依然没有。所以我在 main 的开头添加了一个 printf 语句。那是我真正感到困惑的地方。

所以我推测文件描述符发生了一些有趣的事情。我将其更改printffprintf. 依然没有。打印到 stderrfprintf确实有效!为什么会这样?

从 main 中删除所有主体,除了初始打印语句和 return 确实打印。

代码

int main(void) {
    fprintf(stdout, "STARTED!");
    //Create an Internet domain socket
    int sockfd = socket(AF_INET, SOCK_STREAM, 0);
    //If this fails exit and print the error
    if (sockfd == -1) {
        printf("Error %d, cannot create socket", errno);
        return 1;
    }
    printf("SOCKET CREATED!");

    //Creates a socket address
    struct sockaddr_in  addr;
    addr.sin_family = AF_INET;
    addr.sin_port = htons(8080);
    addr.sin_addr.s_addr = INADDR_ANY;

    //Attempts to bind to the socket address, again prints to error if this fails.
    if (bind(sockfd, (struct sockaddr *) &addr, sizeof(addr)) == -1)
    {
        printf("Error %d, cannot bind", errno);
        return 1;
    }

    //Starts Listening for a client
    if (listen(sockfd, 1) == -1)
    {
        printf("Error %d, cannot listen", errno);
        return 1;
    }

    //If all is successful, server is operational
    while(1)
    {
        //Creates a file descripter for the connection
        int connfd;
        //And a socket address for the client
        struct sockaddr_in cliaddr;
        socklen_t cliaddrlen = sizeof(cliaddr);
        //If a connection attempt is made accepts it.
        connfd = accept(sockfd, (struct sockaddr *) &cliaddr, &cliaddrlen);
        if (connfd == -1) {
            //If the connection fails print an error
            printf("Error %d, cannot accept connection", errno);
            continue;
        }

        //Otherwise process the request
        else {
            printf("CONNECTED!");
            char end;
            end = 1;
            while (end)
            {
                process_request(connfd);
                end = 0;
            }
        }
        close(connfd);

    }
    close(sockfd);
    return 0;
}
4

1 回答 1

33

输出通常由系统缓冲。您可以调用 fflush,但有时,根据缓存的工作方式,只需用换行符结束输出就足够了。所以尝试改变

fprintf(stdout, "STARTED!");

fprintf(stdout, "STARTED!\n");

而且,如果这没有帮助,

fprintf(stdout, "STARTED!\n");
fflush(stdout)

(而且 stderr 通常不会被缓存,因为您想立即看到错误。)

最后,您将在程序完成时看到输出(因为随后刷新了内容),这可能解释了其余的行为。

于 2013-02-09T02:41:40.257 回答