summaryrefslogtreecommitdiff
path: root/source4/heimdal_build/krb5-glue.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-11-02 18:14:53 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-11-02 18:14:53 +0100
commite7810b1bc2c920d828d694817f88ea3ae9e74750 (patch)
tree01e4a31aa4460a0d65811d56a9f6f7d7fe5550b1 /source4/heimdal_build/krb5-glue.c
parent15c0aad880dceb6235e6b16e3276f73c85a152fc (diff)
downloadsamba-e7810b1bc2c920d828d694817f88ea3ae9e74750.tar.gz
samba-e7810b1bc2c920d828d694817f88ea3ae9e74750.tar.bz2
samba-e7810b1bc2c920d828d694817f88ea3ae9e74750.zip
Use standard heimdal function for finding interfaces - libreplace provides support for the underlying functions now.
Diffstat (limited to 'source4/heimdal_build/krb5-glue.c')
-rw-r--r--source4/heimdal_build/krb5-glue.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/source4/heimdal_build/krb5-glue.c b/source4/heimdal_build/krb5-glue.c
index b41e3c0271..8a09a91f3e 100644
--- a/source4/heimdal_build/krb5-glue.c
+++ b/source4/heimdal_build/krb5-glue.c
@@ -25,39 +25,6 @@
#include "lib/socket/netif.h"
#include "param/param.h"
-/**
- get the list of IP addresses for configured interfaces
-*/
-krb5_error_code KRB5_LIB_FUNCTION krb5_get_all_client_addrs(krb5_context context, krb5_addresses *res)
-{
- int i;
- struct interface *ifaces;
-
- load_interfaces(NULL, lp_interfaces(global_loadparm), &ifaces);
-
- res->len = iface_count(ifaces);
- res->val = malloc_array_p(HostAddress, res->len);
- if (res->val == NULL) {
- talloc_free(ifaces);
- return ENOMEM;
- }
- for (i=0;i<res->len;i++) {
- const char *ip = iface_n_ip(ifaces, i);
- res->val[i].addr_type = AF_INET;
- res->val[i].address.length = 4;
- res->val[i].address.data = malloc(4);
- if (res->val[i].address.data == NULL) {
- talloc_free(ifaces);
- return ENOMEM;
- }
- ((struct in_addr *)res->val[i].address.data)->s_addr = inet_addr(ip);
- }
-
- talloc_free(ifaces);
-
- return 0;
-}
-
#include "heimdal/lib/krb5/krb5_locl.h"
const krb5_cc_ops krb5_scc_ops = {