#include "cache.h"
#include "pkt-line.h"
-#include <alloca.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/socket.h>
write(2, buf, buflen);
}
-void logerror(const char *err, ...)
+static void logerror(const char *err, ...)
{
va_list params;
va_start(params, err);
va_end(params);
}
-void loginfo(const char *err, ...)
+static void loginfo(const char *err, ...)
{
va_list params;
if (!verbose)
{
int socknum = 0, *socklist = NULL;
int maxfd = -1;
- fd_set fds_init, fds;
char pbuf[NI_MAXSERV];
struct addrinfo hints, *ai0, *ai;
if (gai)
die("getaddrinfo() failed: %s\n", gai_strerror(gai));
- FD_ZERO(&fds_init);
-
for (ai = ai0; ai; ai = ai->ai_next) {
int sockfd;
int *newlist;
socklist = newlist;
socklist[socknum++] = sockfd;
- FD_SET(sockfd, &fds_init);
if (maxfd < sockfd)
maxfd = sockfd;
}
return 0;
}
- *socklist_p = malloc(sizeof(int));
- if ( !*socklist_p )
- die("memory allocation failed: %s", strerror(errno));
+ *socklist_p = xmalloc(sizeof(int));
**socklist_p = sockfd;
}
struct pollfd *pfd;
int i;
- pfd = calloc(socknum, sizeof(struct pollfd));
- if (!pfd)
- die("memory allocation failed: %s", strerror(errno));
+ pfd = xcalloc(socknum, sizeof(struct pollfd));
for (i = 0; i < socknum; i++) {
pfd[i].fd = socklist[i];
pfd[i].events = POLLIN;
}
+
+ signal(SIGCHLD, child_handler);
for (;;) {
int i;
for (i = 0; i < socknum; i++) {
if (pfd[i].revents & POLLIN) {
struct sockaddr_storage ss;
- int sslen = sizeof(ss);
+ unsigned int sslen = sizeof(ss);
int incoming = accept(pfd[i].fd, (struct sockaddr *)&ss, &sslen);
if (incoming < 0) {
switch (errno) {
{
int socknum, *socklist;
- signal(SIGCHLD, child_handler);
-
socknum = socksetup(port, &socklist);
if (socknum == 0)
die("unable to allocate any listen sockets on port %u", port);