~ubuntu-branches/ubuntu/vivid/samba/vivid

« back to all changes in this revision

Viewing changes to source3/librpc/gen_ndr/srv_dfs.h

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-21 13:18:04 UTC
  • mfrom: (0.39.21 sid)
  • Revision ID: package-import@ubuntu.com-20111221131804-xtlr39wx6njehxxr
Tags: 2:3.6.1-3ubuntu1
* Merge from Debian testing.  Remaining changes:
  + debian/patches/VERSION.patch:
    - set SAMBA_VERSION_SUFFIX to Ubuntu.
  + debian/patches/error-trans.fix-276472:
    - Add the translation of Unix Error code -ENOTSUP to NT Error Code
    - NT_STATUS_NOT_SUPPORTED to prevent the Permission denied error.
  + debian/smb.conf:
    - add "(Samba, Ubuntu)" to server string.
    - comment out the default [homes] share, and add a comment about
      "valid users = %S" to show users how to restrict access to
      \\server\username to only username.
    - Set 'usershare allow guests', so that usershare admins are 
      allowed to create public shares in addition to authenticated
      ones.
    - add map to guest = Bad user, maps bad username to guest access.
  + debian/samba-common.config:
    - Do not change priority to high if dhclient3 is installed.
    - Use priority medium instead of high for the workgroup question.
  + debian/control:
    - Don't build against or suggest ctdb.
    - Add dependency on samba-common-bin to samba.
  + Add ufw integration:
    - Created debian/samba.ufw.profile
    - debian/rules, debian/samba.dirs, debian/samba.files: install
      profile
    - debian/control: have samba suggest ufw
  + Add apport hook:
    - Created debian/source_samba.py.
    - debian/rules, debian/samba.dirs, debian/samba-common-bin.files: install
  + Switch to upstart:
    - Add debian/samba.{nmbd,smbd}.upstart.
  + debian/samba.logrotate, debian/samba-common.dhcp, debian/samba.if-up:
    - Make them upstart compatible
  + debian/samba.postinst: 
    - Avoid scary pdbedit warnings on first import.
  + debian/samba-common.postinst: Add more informative error message for
    the case where smb.conf was manually deleted
  + debian/patches/fix-debuglevel-name-conflict.patch: don't use 'debug_level'
    as a global variable name in an NSS module 
  + Dropped:
    - debian/patches/error-trans.fix-276472
    - debian/patches/fix-debuglevel-name-conflict.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "librpc/gen_ndr/ndr_dfs.h"
 
2
#ifndef __SRV_NETDFS__
 
3
#define __SRV_NETDFS__
 
4
void _dfs_GetManagerVersion(struct pipes_struct *p, struct dfs_GetManagerVersion *r);
 
5
WERROR _dfs_Add(struct pipes_struct *p, struct dfs_Add *r);
 
6
WERROR _dfs_Remove(struct pipes_struct *p, struct dfs_Remove *r);
 
7
WERROR _dfs_SetInfo(struct pipes_struct *p, struct dfs_SetInfo *r);
 
8
WERROR _dfs_GetInfo(struct pipes_struct *p, struct dfs_GetInfo *r);
 
9
WERROR _dfs_Enum(struct pipes_struct *p, struct dfs_Enum *r);
 
10
WERROR _dfs_Rename(struct pipes_struct *p, struct dfs_Rename *r);
 
11
WERROR _dfs_Move(struct pipes_struct *p, struct dfs_Move *r);
 
12
WERROR _dfs_ManagerGetConfigInfo(struct pipes_struct *p, struct dfs_ManagerGetConfigInfo *r);
 
13
WERROR _dfs_ManagerSendSiteInfo(struct pipes_struct *p, struct dfs_ManagerSendSiteInfo *r);
 
14
WERROR _dfs_AddFtRoot(struct pipes_struct *p, struct dfs_AddFtRoot *r);
 
15
WERROR _dfs_RemoveFtRoot(struct pipes_struct *p, struct dfs_RemoveFtRoot *r);
 
16
WERROR _dfs_AddStdRoot(struct pipes_struct *p, struct dfs_AddStdRoot *r);
 
17
WERROR _dfs_RemoveStdRoot(struct pipes_struct *p, struct dfs_RemoveStdRoot *r);
 
18
WERROR _dfs_ManagerInitialize(struct pipes_struct *p, struct dfs_ManagerInitialize *r);
 
19
WERROR _dfs_AddStdRootForced(struct pipes_struct *p, struct dfs_AddStdRootForced *r);
 
20
WERROR _dfs_GetDcAddress(struct pipes_struct *p, struct dfs_GetDcAddress *r);
 
21
WERROR _dfs_SetDcAddress(struct pipes_struct *p, struct dfs_SetDcAddress *r);
 
22
WERROR _dfs_FlushFtTable(struct pipes_struct *p, struct dfs_FlushFtTable *r);
 
23
WERROR _dfs_Add2(struct pipes_struct *p, struct dfs_Add2 *r);
 
24
WERROR _dfs_Remove2(struct pipes_struct *p, struct dfs_Remove2 *r);
 
25
WERROR _dfs_EnumEx(struct pipes_struct *p, struct dfs_EnumEx *r);
 
26
WERROR _dfs_SetInfo2(struct pipes_struct *p, struct dfs_SetInfo2 *r);
 
27
void netdfs_get_pipe_fns(struct api_struct **fns, int *n_fns);
 
28
struct rpc_srv_callbacks;
 
29
NTSTATUS rpc_netdfs_init(const struct rpc_srv_callbacks *rpc_srv_cb);
 
30
NTSTATUS rpc_netdfs_shutdown(void);
 
31
#endif /* __SRV_NETDFS__ */