Displaying 5 results from an estimated 5 matches for "shouterr_busi".
Did you mean:
shouterr_busy
2004 Aug 06
1
libshout nonblocking API
I propose the following changes to the libshout API to support
nonblocking I/O:
New functions:
int shout_set_nonblocking(shout_t *self, unsigned int nonblocking):
Instructs libshout to use nonblocking I/O. Must be called before
shout_open (no switching back and forth midstream at the moment).
unsigned int shout_get_nonblocking(shout_t *self): self-explanatory.
Changed functions:
2020 Apr 04
0
[PATCH] nonblocking: remove usleep usage
usleep is deprecated under POSIX 2008 and is optionally unavailable
with uClibc-ng.
Signed-off-by: Rosen Penev <rosenp at gmail.com>
---
examples/nonblocking.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/examples/nonblocking.c b/examples/nonblocking.c
index 8e38a94..2f15b80 100644
--- a/examples/nonblocking.c
+++ b/examples/nonblocking.c
@@ -70,8 +70,10 @@ int
2022 Apr 12
0
Release of libshout, version 2.4.6
Good evening,
at the Icecast Project we are pleased to have released the new version
2.4.6 of libshout.
libshout is a library providing a simple interface to send streams to
streaming servers including Icecast.
This new release includes a number of updates:
* Added support for plain text streaming
* Fixed pkg-config file (#2329)
* Made vorbis an optional codec
* Do not pass to small headers
2022 Apr 12
0
Release of libshout, version 2.4.6
Good evening,
at the Icecast Project we are pleased to have released the new version
2.4.6 of libshout.
libshout is a library providing a simple interface to send streams to
streaming servers including Icecast.
This new release includes a number of updates:
* Added support for plain text streaming
* Fixed pkg-config file (#2329)
* Made vorbis an optional codec
* Do not pass to small headers
2008 Aug 30
3
Updated version of patch
Attached is a patch against shout-python-0.2 which does two trivial but
very useful things
(1) The function "get_connected" is exported so that shout-python
becomes usable
in nonblocking mode. In the current version of shout-python "open"
raises an exception in nonblocking mode.
(2) The global interpreter lock is released in the potentially blocking
functions