/*1* fs/cifs/dns_resolve.h -- DNS Resolver upcall management for CIFS DFS2* Handles host name to IP address resolution3*4* Copyright (c) International Business Machines Corp., 20085* Author(s): Steve French ([email protected])6*7* This library is free software; you can redistribute it and/or modify8* it under the terms of the GNU Lesser General Public License as published9* by the Free Software Foundation; either version 2.1 of the License, or10* (at your option) any later version.11*12* This library is distributed in the hope that it will be useful,13* but WITHOUT ANY WARRANTY; without even the implied warranty of14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See15* the GNU Lesser General Public License for more details.16*17* You should have received a copy of the GNU Lesser General Public License18* along with this library; if not, write to the Free Software19* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA20*/2122#ifndef _DNS_RESOLVE_H23#define _DNS_RESOLVE_H2425#ifdef __KERNEL__26extern int dns_resolve_server_name_to_ip(const char *unc, char **ip_addr);27#endif /* KERNEL */2829#endif /* _DNS_RESOLVE_H */303132