mirror of
https://github.com/curl/curl.git
synced 2026-01-28 02:14:33 +00:00
10 lines
183 B
Java
10 lines
183 B
Java
public interface CurlWrite
|
|
{
|
|
/**
|
|
* handleString gets called by libcurl on each chunk of data
|
|
* we receive from the remote server
|
|
*/
|
|
public int handleString(byte s[]);
|
|
}
|
|
|