summaryrefslogtreecommitdiffstats
path: root/src/tests/httptest.c
blob: 7e08f079f37937b9fc8b8e02911b38b6c4050566 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <stdint.h>
#include <string.h>
#include <byteswap.h>
#include <console.h>
#include <vsprintf.h>
#include <gpxe/async.h>
#include <gpxe/http.h>
#include <gpxe/ip.h>
#include <gpxe/uaccess.h>
#include "pxe.h"

static void test_http_callback ( struct http_request *http, char *data, size_t len ) {
	userptr_t pxe_buffer = real_to_user ( 0, 0x7c00 );
	unsigned long offset = http->file_recv;
	http->file_recv += len;
	copy_to_user ( pxe_buffer, offset, data, len );
}

void test_http ( struct net_device *netdev, struct sockaddr_tcpip *server, const char *filename ) {
	struct http_request http;
	int rc;

	memset ( &http, 0, sizeof ( http ) );
	memcpy ( &http.server, server, sizeof ( http.server ) );
	http.filename = filename;
	http.callback = test_http_callback;

	rc = async_wait ( get_http ( &http ) );
	if ( rc ) {
		printf ( "HTTP fetch failed\n" );
	}

	printf ( "Attempting PXE boot\n" );
	pxe_netdev = netdev;
	rc = pxe_boot();
	printf ( "PXE NBP returned with status %04x\n", rc);
}