c - Socket 服务器关闭命令的连接

标签 c linux sockets

我尝试修改以下代码,它是一个简单的多线程套接字服务器,如果客户端发出 QUIT 命令,那么它实际上会关闭连接。

/*
    C socket server example, handles multiple clients using threads
*/

#include<stdio.h>
#include<string.h>    //strlen
#include<stdlib.h>    //strlen
#include<sys/socket.h>
#include<arpa/inet.h> //inet_addr
#include<unistd.h>    //write
#include<pthread.h> //for threading , link with lpthread

//the thread function
void *connection_handler(void *);

int main(int argc , char *argv[])
{
    int socket_desc , client_sock , c , *new_sock;
    struct sockaddr_in server , client;

    //Create socket
    socket_desc = socket(AF_INET , SOCK_STREAM , 0);
    if (socket_desc == -1)
    {
        printf("Could not create socket");
    }
    puts("Socket created");

    //Prepare the sockaddr_in structure
    server.sin_family = AF_INET;
    server.sin_addr.s_addr = INADDR_ANY;
    server.sin_port = htons( 8888 );

    //Bind
    if( bind(socket_desc,(struct sockaddr *)&server , sizeof(server)) < 0)
    {
        //print the error message
        perror("bind failed. Error");
        return 1;
    }
    puts("bind done");

    //Listen
    listen(socket_desc , 3);

    //Accept and incoming connection
    puts("Waiting for incoming connections...");
    c = sizeof(struct sockaddr_in);


    //Accept and incoming connection
    puts("Waiting for incoming connections...");
    c = sizeof(struct sockaddr_in);
    while( (client_sock = accept(socket_desc, (struct sockaddr *)&client, (socklen_t*)&c)) )
    {
        puts("Connection accepted");

        pthread_t sniffer_thread;
        new_sock = malloc(1);
        *new_sock = client_sock;

        if( pthread_create( &sniffer_thread , NULL ,  connection_handler , (void*) new_sock) < 0)
        {
            perror("could not create thread");
            return 1;
        }

        //Now join the thread , so that we dont terminate before the thread
        //pthread_join( sniffer_thread , NULL);
        puts("Handler assigned");
    }

    if (client_sock < 0)
    {
        perror("accept failed");
        return 1;
    }

    return 0;
}

/*
 * This will handle connection for each client
 * */
void *connection_handler(void *socket_desc)
{
    //Get the socket descriptor
    int sock = *(int*)socket_desc;
    int read_size;
    char *message , client_message[2000];

    //Send some messages to the client
    message = "Greetings! I am your connection handler\n";
    write(sock , message , strlen(message));

    message = "Now type something and i shall repeat what you type \n";
    write(sock , message , strlen(message));

    //Receive a message from client
    while( (read_size = recv(sock , client_message , 2000 , 0)) > 0 )
    {
        //Send the message back to client
        write(sock , client_message , strlen(client_message));
    }

    if(read_size == 0)
    {
        puts("Client disconnected");
        fflush(stdout);
    }
    else if(read_size == -1)
    {
        perror("recv failed");
    }

    //Free the socket pointer
    free(socket_desc);

    return 0;
}

我所做的是在 while 循环中插入一个中断到连接处理程序线程(可以工作),然后在
自由(socket_desc); 我添加了 关闭(socket_desc); 以及关闭连接。这会生成编译器错误,并且服务器在到达此点时崩溃。

com.c: In function ‘connection_handler’: com.c:134:5: warning: passing argument 1 of ‘close’ makes integer from pointer without a cast [enabled by default]

最佳答案

因为(在你的第二个代码块中)你似乎使用 sock_desc 作为一个 void 指针,指向你知道实际上是一个 int > 和 sock 作为通过取消引用获得的 int,您应该调用

close(sock);

与您使用的其他套接字函数一样,close() 采用文件描述符(您可以将其视为系统提供的稍微任意的“文件编号”)作为其参数,而不是指针。

关于c - Socket 服务器关闭命令的连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22182784/

相关文章:

linux - 使用 Linux 在目录中使用通配符查找文件

linux - 基本的linux内核模块

objective-c - 无法在后台 iOS 中保持 Websocket 事件

c - 以下 strncpy 调用的解释

无法在 VS2012 中的 for 循环后声明变量

c++ - 我可以在 C 程序中使用 C++ 库吗?

linux - 我使用哪种 Debian 架构(armel 或 armhf)来模拟 BeagleBoneBlack?

c - 临时文件与 malloc(在 C 中)

c - 在 C 中将字符串传递给 popen 时保留双引号

c - 如何编写重发数据包的代理程序?