[GitHub] guacamole-server pull request #155: GUACAMOLE-446: Allow redirected drive na...

2018-07-05 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/guacamole-server/pull/155


---


[GitHub] guacamole-server pull request #155: GUACAMOLE-446: Allow redirected drive na...

2018-03-24 Thread necouchman
Github user necouchman commented on a diff in the pull request:

https://github.com/apache/guacamole-server/pull/155#discussion_r176919439
  
--- Diff: src/protocols/rdp/guac_rdpdr/rdpdr_fs_service.h ---
@@ -42,7 +42,7 @@
  * Registers a new filesystem device within the RDPDR plugin. This must be 
done
  * before RDPDR connection finishes.
  */
-void guac_rdpdr_register_fs(guac_rdpdrPlugin* rdpdr);
+void guac_rdpdr_register_fs(guac_rdpdrPlugin* rdpdr, char* drive_name);
--- End diff --

Updated.


---


[GitHub] guacamole-server pull request #155: GUACAMOLE-446: Allow redirected drive na...

2018-03-17 Thread mike-jumper
Github user mike-jumper commented on a diff in the pull request:

https://github.com/apache/guacamole-server/pull/155#discussion_r175278157
  
--- Diff: src/protocols/rdp/guac_rdpdr/rdpdr_fs_service.h ---
@@ -42,7 +42,7 @@
  * Registers a new filesystem device within the RDPDR plugin. This must be 
done
  * before RDPDR connection finishes.
  */
-void guac_rdpdr_register_fs(guac_rdpdrPlugin* rdpdr);
+void guac_rdpdr_register_fs(guac_rdpdrPlugin* rdpdr, char* drive_name);
--- End diff --

The documentation for this function should be brought up-to-date now that 
it's being updated. Other than that, I think these changes are pretty much good 
to go.


---


[GitHub] guacamole-server pull request #155: GUACAMOLE-446: Allow redirected drive na...

2018-02-23 Thread necouchman
GitHub user necouchman opened a pull request:

https://github.com/apache/guacamole-server/pull/155

GUACAMOLE-446: Allow redirected drive name to be configured

Allows for the name of the redirected drive to be configured when pushing a 
filesystem through via RDP.

Note that this change not only allows for the name to be configured, but 
also *removes UTF-16 encoding* of the drive name as it appears that Windows 
does not expect the filesystem name to be UTF-16 encoded.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/necouchman/guacamole-server GUACAMOLE-446

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/guacamole-server/pull/155.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #155


commit 5cc4defe848caa294fa8a3761f155acf41758876
Author: Nick Couchman 
Date:   2018-02-23T13:30:27Z

GUACAMOLE-446: Implement support for setting the drive name in RDP.

commit e1c727668ee35e345078339996a5ca51c8af7cc0
Author: Nick Couchman 
Date:   2018-02-23T16:07:13Z

GUACAMOLE-446: Don't convert filesystem share name to UTF-16.




---