Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/nsswitch/winbind_client.h

    r740 r988  
    77   Copyright (C) Andrew Tridgell 2000
    88   Copyright (C) Andrew Bartlett 2002
     9   Copyright (C) Matthew Newton 2015
    910
    1011
     
    2930#include "winbind_struct_protocol.h"
    3031
     32struct winbindd_context;
     33
     34struct winbindd_context *winbindd_ctx_create(void);
     35void winbindd_ctx_free(struct winbindd_context *ctx);
     36
    3137void winbindd_free_response(struct winbindd_response *response);
    32 NSS_STATUS winbindd_send_request(int req_type, int need_priv,
     38NSS_STATUS winbindd_send_request(struct winbindd_context *ctx,
     39                                 int req_type, int need_priv,
    3340                                 struct winbindd_request *request);
    34 NSS_STATUS winbindd_get_response(struct winbindd_response *response);
    35 NSS_STATUS winbindd_request_response(int req_type,
    36                             struct winbindd_request *request,
    37                             struct winbindd_response *response);
    38 NSS_STATUS winbindd_priv_request_response(int req_type,
     41NSS_STATUS winbindd_get_response(struct winbindd_context *ctx,
     42                                 struct winbindd_response *response);
     43NSS_STATUS winbindd_request_response(struct winbindd_context *ctx,
     44                                     int req_type,
     45                                     struct winbindd_request *request,
     46                                     struct winbindd_response *response);
     47NSS_STATUS winbindd_priv_request_response(struct winbindd_context *ctx,
     48                                          int req_type,
    3949                                          struct winbindd_request *request,
    4050                                          struct winbindd_response *response);
     51
    4152#define winbind_env_set() \
    4253        (strcmp(getenv(WINBINDD_DONT_ENV)?getenv(WINBINDD_DONT_ENV):"0","1") == 0)
Note: See TracChangeset for help on using the changeset viewer.