3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-13 02:35:54 +00:00
Brooklyn/fs/cifs/dns_resolve.h

19 lines
472 B
C
Raw Normal View History

2021-10-02 21:09:28 +05:00
/* SPDX-License-Identifier: LGPL-2.1 */
2021-05-27 00:09:36 +05:00
/*
2021-10-02 21:09:28 +05:00
* DNS Resolver upcall management for CIFS DFS
* Handles host name to IP address resolution
2021-05-27 00:09:36 +05:00
*
* 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-10-02 21:09:28 +05:00
extern int dns_resolve_server_name_to_ip(const char *unc, char **ip_addr, time64_t *expiry);
2021-05-27 00:09:36 +05:00
#endif /* KERNEL */
#endif /* _DNS_RESOLVE_H */