mirror of
https://github.com/ipxe/ipxe
synced 2025-12-18 02:20:19 +03:00
Gave asynchronous operations approximate POSIX signal semantics. This
will enable us to cascade async operations, which is necessary in order to properly support DNS. (For example, an HTTP request may have to redirect to a new location and will have to perform a new DNS lookup, so we can't just rely on doing the name lookup at the time of parsing the initial URL). Anything other than HTTP is probably broken right now; I'll fix the others up asap.
This commit is contained in:
@@ -11,6 +11,6 @@
|
||||
#include <stdint.h>
|
||||
#include <gpxe/uaccess.h>
|
||||
|
||||
extern int fetch ( const char *filename, userptr_t *data, size_t *len );
|
||||
extern int fetch ( const char *uri_string, userptr_t *data, size_t *len );
|
||||
|
||||
#endif /* _USR_FETCH_H */
|
||||
|
||||
Reference in New Issue
Block a user