diff options
| author | Michael Brown | 2010-04-19 21:16:01 +0200 |
|---|---|---|
| committer | Michael Brown | 2010-04-20 00:43:39 +0200 |
| commit | 8406115834d38bb743e01f35bfd36e835532415e (patch) | |
| tree | ee1e3106e2cdc645d911ba5643f8414b21fc4c3e /src/net/tcp | |
| parent | [eepro100] Remove link-state checking (diff) | |
| download | ipxe-8406115834d38bb743e01f35bfd36e835532415e.tar.gz ipxe-8406115834d38bb743e01f35bfd36e835532415e.tar.xz ipxe-8406115834d38bb743e01f35bfd36e835532415e.zip | |
[build] Rename gPXE to iPXE
Access to the gpxe.org and etherboot.org domains and associated
resources has been revoked by the registrant of the domain. Work
around this problem by renaming project from gPXE to iPXE, and
updating URLs to match.
Also update README, LOG and COPYRIGHTS to remove obsolete information.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net/tcp')
| -rw-r--r-- | src/net/tcp/ftp.c | 18 | ||||
| -rw-r--r-- | src/net/tcp/http.c | 26 | ||||
| -rw-r--r-- | src/net/tcp/https.c | 8 | ||||
| -rw-r--r-- | src/net/tcp/iscsi.c | 22 |
4 files changed, 37 insertions, 37 deletions
diff --git a/src/net/tcp/ftp.c b/src/net/tcp/ftp.c index 920e537ab..3ef71b610 100644 --- a/src/net/tcp/ftp.c +++ b/src/net/tcp/ftp.c @@ -5,14 +5,14 @@ #include <assert.h> #include <errno.h> #include <byteswap.h> -#include <gpxe/socket.h> -#include <gpxe/tcpip.h> -#include <gpxe/in.h> -#include <gpxe/xfer.h> -#include <gpxe/open.h> -#include <gpxe/uri.h> -#include <gpxe/features.h> -#include <gpxe/ftp.h> +#include <ipxe/socket.h> +#include <ipxe/tcpip.h> +#include <ipxe/in.h> +#include <ipxe/xfer.h> +#include <ipxe/open.h> +#include <ipxe/uri.h> +#include <ipxe/features.h> +#include <ipxe/ftp.h> /** @file * @@ -149,7 +149,7 @@ static const char * ftp_user ( struct ftp_request *ftp ) { * @ret password FTP password */ static const char * ftp_password ( struct ftp_request *ftp ) { - static char *ftp_default_password = "etherboot@etherboot.org"; + static char *ftp_default_password = "ipxe@ipxe.org"; return ftp->uri->password ? ftp->uri->password : ftp_default_password; } diff --git a/src/net/tcp/http.c b/src/net/tcp/http.c index a365b2a48..c7027d2d0 100644 --- a/src/net/tcp/http.c +++ b/src/net/tcp/http.c @@ -33,18 +33,18 @@ FILE_LICENCE ( GPL2_OR_LATER ); #include <byteswap.h> #include <errno.h> #include <assert.h> -#include <gpxe/uri.h> -#include <gpxe/refcnt.h> -#include <gpxe/iobuf.h> -#include <gpxe/xfer.h> -#include <gpxe/open.h> -#include <gpxe/socket.h> -#include <gpxe/tcpip.h> -#include <gpxe/process.h> -#include <gpxe/linebuf.h> -#include <gpxe/features.h> -#include <gpxe/base64.h> -#include <gpxe/http.h> +#include <ipxe/uri.h> +#include <ipxe/refcnt.h> +#include <ipxe/iobuf.h> +#include <ipxe/xfer.h> +#include <ipxe/open.h> +#include <ipxe/socket.h> +#include <ipxe/tcpip.h> +#include <ipxe/process.h> +#include <ipxe/linebuf.h> +#include <ipxe/features.h> +#include <ipxe/base64.h> +#include <ipxe/http.h> FEATURE ( FEATURE_PROTOCOL, "HTTP", DHCP_EB_FEATURE_HTTP, 1 ); @@ -453,7 +453,7 @@ static void http_step ( struct process *process ) { /* Send GET request */ if ( ( rc = xfer_printf ( &http->socket, "GET %s%s HTTP/1.0\r\n" - "User-Agent: gPXE/" VERSION "\r\n" + "User-Agent: iPXE/" VERSION "\r\n" "%s%s%s" "Host: %s\r\n" "\r\n", diff --git a/src/net/tcp/https.c b/src/net/tcp/https.c index 7a2961f21..b738f4167 100644 --- a/src/net/tcp/https.c +++ b/src/net/tcp/https.c @@ -26,10 +26,10 @@ FILE_LICENCE ( GPL2_OR_LATER ); */ #include <stddef.h> -#include <gpxe/open.h> -#include <gpxe/tls.h> -#include <gpxe/http.h> -#include <gpxe/features.h> +#include <ipxe/open.h> +#include <ipxe/tls.h> +#include <ipxe/http.h> +#include <ipxe/features.h> FEATURE ( FEATURE_PROTOCOL, "HTTPS", DHCP_EB_FEATURE_HTTPS, 1 ); diff --git a/src/net/tcp/iscsi.c b/src/net/tcp/iscsi.c index b13a107c2..27e454e25 100644 --- a/src/net/tcp/iscsi.c +++ b/src/net/tcp/iscsi.c @@ -25,17 +25,17 @@ FILE_LICENCE ( GPL2_OR_LATER ); #include <errno.h> #include <assert.h> #include <byteswap.h> -#include <gpxe/vsprintf.h> -#include <gpxe/socket.h> -#include <gpxe/xfer.h> -#include <gpxe/open.h> -#include <gpxe/scsi.h> -#include <gpxe/process.h> -#include <gpxe/uaccess.h> -#include <gpxe/tcpip.h> -#include <gpxe/settings.h> -#include <gpxe/features.h> -#include <gpxe/iscsi.h> +#include <ipxe/vsprintf.h> +#include <ipxe/socket.h> +#include <ipxe/xfer.h> +#include <ipxe/open.h> +#include <ipxe/scsi.h> +#include <ipxe/process.h> +#include <ipxe/uaccess.h> +#include <ipxe/tcpip.h> +#include <ipxe/settings.h> +#include <ipxe/features.h> +#include <ipxe/iscsi.h> /** @file * |
