* and the other ones are used to setup and release the transport layer.
*/
struct xprt_ops {
- int (*rcv_buf)(struct connection *conn, struct buffer *buf, int count); /* recv callback */
+ size_t (*rcv_buf)(struct connection *conn, struct buffer *buf, size_t count); /* recv callback */
size_t (*snd_buf)(struct connection *conn, const struct buffer *buf, size_t count, int flags); /* send callback */
int (*rcv_pipe)(struct connection *conn, struct pipe *pipe, unsigned int count); /* recv-to-pipe callback */
int (*snd_pipe)(struct connection *conn, struct pipe *pipe); /* send-to-pipe callback */
* errno is cleared before starting so that the caller knows that if it spots an
* error without errno, it's pending and can be retrieved via getsockopt(SO_ERROR).
*/
-static int raw_sock_to_buf(struct connection *conn, struct buffer *buf, int count)
+static size_t raw_sock_to_buf(struct connection *conn, struct buffer *buf, size_t count)
{
- int ret, done = 0;
- int try;
+ ssize_t ret;
+ size_t try, done = 0;
if (!conn_ctrl_ready(conn))
return 0;
* avoiding the call if inappropriate. The function does not call the
* connection's polling update function, so the caller is responsible for this.
*/
-static int ssl_sock_to_buf(struct connection *conn, struct buffer *buf, int count)
+static size_t ssl_sock_to_buf(struct connection *conn, struct buffer *buf, size_t count)
{
- int ret, done = 0;
- int try;
+ ssize_t ret;
+ size_t try, done = 0;
conn_refresh_polling_flags(conn);