#include <stddef.h>
#include <gpxe/uri.h>
Go to the source code of this file.
Functions | |
| FILE_LICENCE (GPL2_OR_LATER) | |
| void | churi (struct uri *uri) |
| Change working URI. | |
Variables | |
| struct uri * | cwuri = NULL |
| Current working URI. | |
Somewhat analogous to the current working directory in a POSIX system.
Definition in file cwuri.c.
| FILE_LICENCE | ( | GPL2_OR_LATER | ) |
| void churi | ( | struct uri * | uri | ) |
Change working URI.
| uri | New working URI, or NULL |
Definition at line 40 of file cwuri.c.
References resolve_uri().
Referenced by image_exec(), and tftp_apply_settings().
00040 { 00041 struct uri *new_uri; 00042 00043 new_uri = resolve_uri ( cwuri, uri ); 00044 uri_put ( cwuri ); 00045 cwuri = new_uri; 00046 }
Current working URI.
Definition at line 33 of file cwuri.c.
Referenced by image_exec(), and xfer_open_uri().
1.5.7.1