aboutsummaryrefslogtreecommitdiffstats
path: root/src/input/soup_input_plugin.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* input/soup: remove redundant flag "ready"Max Kellermann2011-09-161-6/+2
| | | | | We'll add proper locking now, and there's no need to carry this duplicate flag.
* input/soup: report failure in _read()Max Kellermann2011-09-161-0/+1
| | | | To report failures to callers who don't use _buffer().
* input/soup: unlock before cancelling the soup messageMax Kellermann2011-09-161-3/+5
| | | | Avoid recursive deadlock in _session_callback().
* input/soup: fix "unused local variable" warningsMax Kellermann2011-09-161-1/+1
|
* input_stream: move input_stream_init(), _deinit() to _internal.cMax Kellermann2011-09-141-0/+1
|
* input/soup: free all resources in method close()Max Kellermann2011-08-241-0/+10
|
* input/soup: new input plugin based on libsoupMax Kellermann2011-08-241-0/+370
To demonstrate the new I/O thread. libsoup is well-integrated into the GLib main loop, which made this plugin pretty easy to write. As a side effect, we have to initialize the I/O thread in all debug programs that use the input API.