]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - audiod_command.c
net: Drop fd_set parameter from para_accept().
[paraslash.git] / audiod_command.c
index bb54dfab87f7965a18f6cccbe6bc4077c147fa29..19537cf0959f40effa9c64fa579e791e737338eb 100644 (file)
@@ -360,7 +360,6 @@ EXPORT_AUDIOD_CMD_HANDLER(version)
  * Handle arriving connections on the local socket.
  *
  * \param accept_fd The fd to accept connections on.
- * \param rfds If \a accept_fd is not set in \a rfds, do nothing.
  *
  * This is called in each iteration of the select loop. If there is an incoming
  * connection on \a accept_fd, this function reads the command sent by the peer,
@@ -373,7 +372,7 @@ EXPORT_AUDIOD_CMD_HANDLER(version)
  *
  * \sa \ref para_accept(), \ref recv_cred_buffer().
  * */
-int handle_connect(int accept_fd, fd_set *rfds)
+int handle_connect(int accept_fd)
 {
        int argc, ret, clifd;
        char buf[MAXLINE], **argv = NULL;
@@ -384,7 +383,7 @@ int handle_connect(int accept_fd, fd_set *rfds)
        char *errctx = NULL;
        const struct audiod_command_info *aci;
 
-       ret = para_accept(accept_fd, rfds, &unix_addr, sizeof(struct sockaddr_un), &clifd);
+       ret = para_accept(accept_fd, &unix_addr, sizeof(struct sockaddr_un), &clifd);
        if (ret <= 0)
                return ret;
        ret = recv_cred_buffer(clifd, buf, sizeof(buf) - 1);