summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/interface/syslinux
diff options
context:
space:
mode:
authorMichael Brown2008-06-13 04:36:24 +0200
committerMichael Brown2010-06-22 16:45:57 +0200
commit7b4fbd93a5f45355e4e5d30e5d34c310f6d30c05 (patch)
tree79280f7a632c413e51b588f462c512fb5c8ae898 /src/arch/i386/interface/syslinux
parent[interface] Convert all job-control interfaces to generic interfaces (diff)
downloadipxe-7b4fbd93a5f45355e4e5d30e5d34c310f6d30c05.tar.gz
ipxe-7b4fbd93a5f45355e4e5d30e5d34c310f6d30c05.tar.xz
ipxe-7b4fbd93a5f45355e4e5d30e5d34c310f6d30c05.zip
[interface] Convert all name-resolution interfaces to generic interfaces
Remove name-resolution as an interface type, and replace name-resolution interfaces with generic interfaces supporting the resolv_done() method. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/i386/interface/syslinux')
-rw-r--r--src/arch/i386/interface/syslinux/comboot_resolv.c65
1 files changed, 33 insertions, 32 deletions
diff --git a/src/arch/i386/interface/syslinux/comboot_resolv.c b/src/arch/i386/interface/syslinux/comboot_resolv.c
index c505d96b4..03bbfd04a 100644
--- a/src/arch/i386/interface/syslinux/comboot_resolv.c
+++ b/src/arch/i386/interface/syslinux/comboot_resolv.c
@@ -7,54 +7,55 @@
FILE_LICENCE ( GPL2_OR_LATER );
-static int comboot_resolv_rc;
-static struct in_addr comboot_resolv_addr;
-
-static void comboot_resolv_done ( struct resolv_interface *resolv,
- struct sockaddr *sa, int rc ) {
- struct sockaddr_in *sin;
+struct comboot_resolver {
+ struct interface intf;
+ int rc;
+ struct in_addr addr;
+};
- resolv_unplug ( resolv );
+static void comboot_resolv_close ( struct comboot_resolver *comboot_resolver,
+ int rc ) {
+ comboot_resolver->rc = rc;
+ intf_shutdown ( &comboot_resolver->intf, rc );
+}
- if ( rc != 0 ) {
- comboot_resolv_rc = rc;
- return;
- }
+static void comboot_resolv_done ( struct comboot_resolver *comboot_resolver,
+ struct sockaddr *sa ) {
+ struct sockaddr_in *sin;
- if ( sa->sa_family != AF_INET ) {
- comboot_resolv_rc = -EAFNOSUPPORT;
- return;
+ if ( sa->sa_family == AF_INET ) {
+ sin = ( ( struct sockaddr_in * ) sa );
+ comboot_resolver->addr = sin->sin_addr;
}
-
- sin = ( ( struct sockaddr_in * ) sa );
- comboot_resolv_addr = sin->sin_addr;
-
- comboot_resolv_rc = 0;
}
-static struct resolv_interface_operations comboot_resolv_ops = {
- .done = comboot_resolv_done,
+static struct interface_operation comboot_resolv_op[] = {
+ INTF_OP ( intf_close, struct comboot_resolver *, comboot_resolv_close ),
+ INTF_OP ( resolv_done, struct comboot_resolver *, comboot_resolv_done ),
};
-static struct resolv_interface comboot_resolver = {
- .intf = {
- .dest = &null_resolv.intf,
- .refcnt = NULL,
- },
- .op = &comboot_resolv_ops,
+static struct interface_descriptor comboot_resolv_desc =
+ INTF_DESC ( struct comboot_resolver, intf, comboot_resolv_op );
+
+static struct comboot_resolver comboot_resolver = {
+ .intf = INTF_INIT ( comboot_resolv_desc ),
};
int comboot_resolv ( const char *name, struct in_addr *address ) {
int rc;
- comboot_resolv_rc = -EINPROGRESS;
+ comboot_resolver.rc = -EINPROGRESS;
+ comboot_resolver.addr.s_addr = 0;
- if ( ( rc = resolv ( &comboot_resolver, name, NULL ) ) != 0 )
+ if ( ( rc = resolv ( &comboot_resolver.intf, name, NULL ) ) != 0 )
return rc;
- while ( comboot_resolv_rc == -EINPROGRESS )
+ while ( comboot_resolver.rc == -EINPROGRESS )
step();
- *address = comboot_resolv_addr;
- return comboot_resolv_rc;
+ if ( ! comboot_resolver.addr.s_addr )
+ return -EAFNOSUPPORT;
+
+ *address = comboot_resolver.addr;
+ return comboot_resolver.rc;
}