From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <9d2919d5e28b35cfb1b4659f03390b40@9netics.com> To: 9fans@9fans.net Date: Tue, 7 Jul 2015 17:53:29 -0700 From: Skip Tavakkolian <9nut@9netics.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] =?utf-8?b?OVAgQ2xvdWTihKI=?= Topicbox-Message-UUID: 5e5c24c6-ead9-11e9-9d60-3106f5b1d025 > it would be useful to me if you would also create a second websocket > server that accepts local samba file requests :) integration with local and third party storage (Drive, S3, Dropbox) are on the radar for future enhancements. in the meantime, if you wanted to roll your own (in Go) ... assuming i undrestand correclty -- that you want to export parts of your SMB share via 9P Cloud to others -- you would need an oauth2 client that will authenticate itself then export a 9P filesystem over websocket to 9pcloud. you can use either goplan9 package at https://github.com/9fans/go (rsc/rob) or go9p package at https://code.google.com/p/go9p/ (lucho and andrey) for the 9p server part and the oauth2 and websocket packages in Go repo on github for authentication and websocket handling. the javascript on the main page should be helpful.