cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

dns_resolve.h (472B)


      1/* SPDX-License-Identifier: LGPL-2.1 */
      2/*
      3 *   DNS Resolver upcall management for CIFS DFS
      4 *   Handles host name to IP address resolution
      5 *
      6 *   Copyright (c) International Business Machines  Corp., 2008
      7 *   Author(s): Steve French (sfrench@us.ibm.com)
      8 *
      9 */
     10
     11#ifndef _DNS_RESOLVE_H
     12#define _DNS_RESOLVE_H
     13
     14#ifdef __KERNEL__
     15extern int dns_resolve_server_name_to_ip(const char *unc, char **ip_addr, time64_t *expiry);
     16#endif /* KERNEL */
     17
     18#endif /* _DNS_RESOLVE_H */