Home | History | Annotate | Download | only in tcp

Lines Matching refs:xfer

39 #include <gpxe/xfer.h>
67 struct xfer_interface xfer;
130 xfer_nullify ( &http->xfer );
131 xfer_close ( &http->xfer, rc );
199 if ( ( rc = xfer_redirect ( &http->xfer, LOCATION_URI_STRING,
228 xfer_seek ( &http->xfer, http->content_length, SEEK_SET );
229 xfer_seek ( &http->xfer, 0, SEEK_SET );
337 if ( ( rc = xfer_deliver_iob ( &http->xfer, iobuf ) ) != 0 )
501 * @v xfer Data transfer interface
504 static void http_xfer_close ( struct xfer_interface *xfer, int rc ) {
506 container_of ( xfer, struct http_request, xfer );
527 * @v xfer Data transfer interface
533 int http_open_filter ( struct xfer_interface *xfer, struct uri *uri,
535 int ( * filter ) ( struct xfer_interface *xfer,
551 xfer_init ( &http->xfer, &http_xfer_operations, &http->refcnt );
570 xfer_plug_plug ( &http->xfer, xfer );
585 * @v xfer Data transfer interface
589 static int http_open ( struct xfer_interface *xfer, struct uri *uri ) {
590 return http_open_filter ( xfer, uri, HTTP_PORT, NULL );