connections,一个链表,存放所有连接,每个连接对应一个evhttp_connection evhttp_connection结构如下: /*A client or server connection.*/structevhttp_connection {/*we use this tailq only if this connection was created for an http * server*/TAILQ_ENTRY(evhttp_connection) next; evutil_socket_t fd;structb...