public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
From: Corinna Vinschen <corinna@sourceware.org>
To: cygwin-cvs@sourceware.org
Subject: [newlib-cygwin/main] Cygwin: //tsclient: allow to enumerate shares
Date: Sat, 23 Mar 2024 22:54:33 +0000 (GMT)	[thread overview]
Message-ID: <20240323225433.E2F843858D28@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=cc74a38d4a210c915233d04cfb8a62cde97c1b62

commit cc74a38d4a210c915233d04cfb8a62cde97c1b62
Author:     Corinna Vinschen <corinna@vinschen.de>
AuthorDate: Sat Mar 23 23:54:26 2024 +0100
Commit:     Corinna Vinschen <corinna@vinschen.de>
CommitDate: Sat Mar 23 23:54:26 2024 +0100

    Cygwin: //tsclient: allow to enumerate shares
    
    The //tsclient provider is WNNC_NET_TERMSRV.
    
    Fixes: 7db1c6fc4e2a ("Cygwin: //server: revert to using WNet and support NFS shares")
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/fhandler/netdrive.cc | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/winsup/cygwin/fhandler/netdrive.cc b/winsup/cygwin/fhandler/netdrive.cc
index 5328429ac34f..fc71016de304 100644
--- a/winsup/cygwin/fhandler/netdrive.cc
+++ b/winsup/cygwin/fhandler/netdrive.cc
@@ -394,8 +394,12 @@ create_thread_and_wait (DIR *dir)
 
     }
 
+
   /* Eventually, try SMB via WNet for share enumeration. */
-  ndi.provider = WNNC_NET_LANMAN;
+  if (!strcmp (dir->__d_dirname + 2, "tsclient"))
+    ndi.provider = WNNC_NET_TERMSRV;
+  else
+    ndi.provider = WNNC_NET_LANMAN;
   ndi.sem = CreateSemaphore (&sec_none_nih, 0, 2, NULL);
   thr = new cygthread (thread_netdrive_wnet, &ndi, "netdrive_smb");
   if (thr->detach (ndi.sem))

                 reply	other threads:[~2024-03-23 22:54 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240323225433.E2F843858D28@sourceware.org \
    --to=corinna@sourceware.org \
    --cc=cygwin-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).