Lines Matching refs:unc
25 * @unc: UNC path specifying the server (with '/' as delimiter)
32 dns_resolve_server_name_to_ip(const char *unc, struct sockaddr *ip_addr, time64_t *expiry)
38 if (!ip_addr || !unc)
41 len = strlen(unc);
43 cifs_dbg(FYI, "%s: unc is too short: %s\n", __func__, unc);
49 hostname = unc + 2;
56 cifs_dbg(FYI, "%s: probably server name is whole unc: %s\n",
57 __func__, unc);
62 cifs_dbg(FYI, "%s: unc is IP, skipping dns upcall: %*.*s\n", __func__, len, len,