~ubuntu-branches/ubuntu/lucid/ecasound2.2/lucid

« back to all changes in this revision

Viewing changes to ecasound/eca-neteci-server.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2008-09-26 09:58:52 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080926095852-k3v9ewhmxpaltusw
Tags: 2.5.2-3
yodl 2.13.1 removed --unique-output option. Remove --unique-output
accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#include <netinet/in.h>   /* BSD: inet_ntoa() */
32
32
#include <sys/poll.h>     /* POSIX: poll() */
33
33
#include <sys/socket.h>   /* BSD: getpeername() */
 
34
#include <sys/types.h>    /* OSX: u_int32_t (INADDR_ANY) */
34
35
 
35
36
#include <kvu_dbc.h>
36
37
#include <kvu_fd_io.h>
193
194
    std::cerr << "bind() failed." << endl;
194
195
  }
195
196
  
196
 
  DBC_ENSURE((unix_sockets_rep == true) && 
197
 
             ((server_listening_rep == true && socketpath_rep.size() > 0 ||
198
 
               server_listening_rep != true && socketpath_rep.size() == 0)) ||
 
197
  DBC_ENSURE((unix_sockets_rep == true && 
 
198
             (((server_listening_rep == true && socketpath_rep.size() > 0) ||
 
199
               (server_listening_rep != true && socketpath_rep.size() == 0)))) ||
199
200
             (unix_sockets_rep != true));
200
201
}
201
202