mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
move ast_carefulwrite from manager.c to utils.c so that cli.c and
res_agi.c no longer depend on manager.h (issue #6397, casper) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25026 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
28
utils.c
28
utils.c
@@ -591,6 +591,34 @@ int ast_wait_for_input(int fd, int ms)
|
||||
return poll(pfd, 1, ms);
|
||||
}
|
||||
|
||||
int ast_carefulwrite(int fd, char *s, int len, int timeoutms)
|
||||
{
|
||||
/* Try to write string, but wait no more than ms milliseconds
|
||||
before timing out */
|
||||
int res = 0;
|
||||
struct pollfd fds[1];
|
||||
while (len) {
|
||||
res = write(fd, s, len);
|
||||
if ((res < 0) && (errno != EAGAIN)) {
|
||||
return -1;
|
||||
}
|
||||
if (res < 0)
|
||||
res = 0;
|
||||
len -= res;
|
||||
s += res;
|
||||
res = 0;
|
||||
if (len) {
|
||||
fds[0].fd = fd;
|
||||
fds[0].events = POLLOUT;
|
||||
/* Wait until writable again */
|
||||
res = poll(fds, 1, timeoutms);
|
||||
if (res < 1)
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
char *ast_strip_quoted(char *s, const char *beg_quotes, const char *end_quotes)
|
||||
{
|
||||
char *e;
|
||||
|
Reference in New Issue
Block a user