mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
Add support for using epoll instead of poll. This should increase scalability and is done in such a way that we should be able to add support for other poll() replacements.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@78683 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -232,7 +232,7 @@ static struct ast_channel *nbs_new(struct nbs_pvt *i, int state)
|
||||
tmp = ast_channel_alloc(1, state, 0, 0, "", "s", context, 0, "NBS/%s", i->stream);
|
||||
if (tmp) {
|
||||
tmp->tech = &nbs_tech;
|
||||
tmp->fds[0] = nbs_fd(i->nbs);
|
||||
ast_channel_set_fd(tmp, 0, nbs_fd(i->nbs));
|
||||
tmp->nativeformats = prefformat;
|
||||
tmp->rawreadformat = prefformat;
|
||||
tmp->rawwriteformat = prefformat;
|
||||
|
Reference in New Issue
Block a user