Brooklyn/fs/cifs/dns_resolve.h

19 lines
522 B
C
Raw Normal View History

/* SPDX-License-Identifier: LGPL-2.1 */
2021-05-26 19:09:36 +00:00
/*
* fs/cifs/dns_resolve.h -- DNS Resolver upcall management for CIFS DFS
* Handles host name to IP address resolution
*
* Copyright (c) International Business Machines Corp., 2008
* Author(s): Steve French (sfrench@us.ibm.com)
*
*/
#ifndef _DNS_RESOLVE_H
#define _DNS_RESOLVE_H
#ifdef __KERNEL__
2021-07-22 16:18:54 +00:00
extern int dns_resolve_server_name_to_ip(const char *unc, char **ip_addr, time64_t *expiry);
2021-05-26 19:09:36 +00:00
#endif /* KERNEL */
#endif /* _DNS_RESOLVE_H */