~ubuntu-branches/ubuntu/quantal/open-vm-tools/quantal-201210021442

« back to all changes in this revision

Viewing changes to services/plugins/unity/ghiProtocolHandler.x

  • Committer: Bazaar Package Importer
  • Author(s): Serge Hallyn
  • Date: 2011-03-31 14:20:05 UTC
  • mfrom: (1.4.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110331142005-3n9red91p7ogkweo
Tags: 2011.03.28-387002-0ubuntu1
* Merge latest upstream git tag.  This has the unlocked_ioctl change
  needed to fix dkms build failures (LP: #727342)
* Changes in debian/rules:
  - work around a bug in toolbox/Makefile, where install-exec-hook is
    not happening.  This needs to get fixed the right way.
  - don't install 'vmware-user' which seems to no longer exist
  - move /etc/xdg into open-vm-toolbox (which should be done using .install)
* debian/open-vm-tools.init: add 'modprobe [-r] vmblock'. (LP: #332323)
* debian/rules and debian/open-vm-toolbox.lintian-overrides:
  - Make vmware-user-suid-wrapper suid-root (LP: #332323)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********************************************************
 
2
 * Copyright (C) 2008 VMware, Inc. All rights reserved.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify it
 
5
 * under the terms of the GNU Lesser General Public License as published
 
6
 * by the Free Software Foundation version 2.1 and no later version.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
10
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the Lesser GNU General Public
 
11
 * License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program; if not, write to the Free Software Foundation, Inc.,
 
15
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA.
 
16
 *
 
17
 *********************************************************/
 
18
 
 
19
/*
 
20
 * ghiProtocolHandler.x --
 
21
 *
 
22
 *    Definition of the data structures used in the GuestRpc commands to
 
23
 *    provide information about the guests protocol handlers (applications
 
24
 *    that are launched when opening URLS).
 
25
 */
 
26
 
 
27
/*
 
28
 * Neither RFC 1630 or 1738 seem to specify an actual maximum, current
 
29
 * usage implies that 64 bytes should be sufficient
 
30
 */
 
31
const GHI_URL_SCHEME_NAME_MAX_LEN = 64;
 
32
 
 
33
/*
 
34
 * The Windows MAX_PATH define specifies that paths may be up to 260 character
 
35
 * units in length. To allow for expansion when going to UTF8 we multiply that
 
36
 * value by 4 here.
 
37
 */
 
38
const GHI_PROTOCOL_HANDLER_MAX_PATH = 1040;
 
39
 
 
40
/*
 
41
 * Maximum number of Protocol Handlers that may be encoded in a single
 
42
 * XDR array.
 
43
 */
 
44
const GHI_MAX_NUM_PROTOCOL_HANDLERS = 32;
 
45
 
 
46
 
 
47
struct GHIProtocolHandlerDetails {
 
48
   /*
 
49
    * The scheme name of a URL is typically, http, ftp, mailto, feed etc.
 
50
    */
 
51
   string schemeName<GHI_URL_SCHEME_NAME_MAX_LEN>;
 
52
 
 
53
   /*
 
54
    * The action URI is used in conjunction with UNITY_RPC_SHELL_OPEN to
 
55
    * instruct the guest to open a specified URL.
 
56
    */
 
57
   string handlerActionURI<GHI_PROTOCOL_HANDLER_MAX_PATH>;
 
58
 
 
59
   /*
 
60
    * The executable path can be used as a parameter to
 
61
    * UNITY_RPC_GET_BINARY_INFO to retrieve additional binary information such
 
62
    * as Icon images.
 
63
    */
 
64
   string executablePath<GHI_PROTOCOL_HANDLER_MAX_PATH>;
 
65
};
 
66
 
 
67
struct GHIProtocolHandlerList {
 
68
   struct GHIProtocolHandlerDetails handlers<GHI_MAX_NUM_PROTOCOL_HANDLERS>;
 
69
};