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/source3/include/nameserv.h

    r414 r988  
    200200
    201201struct nmb_data {
    202         uint16 nb_flags;         /* Netbios flags. */
     202        uint16_t nb_flags;       /* Netbios flags. */
    203203        int num_ips;             /* Number of ip entries. */
    204204        struct in_addr *ip;      /* The ip list for this name. */
     
    233233};
    234234
     235/* used for server information: client, nameserv and ipc */
     236struct server_info_struct {
     237        fstring name;
     238        uint32_t type;
     239        fstring comment;
     240        fstring domain; /* used ONLY in ipc.c NOT namework.c */
     241        bool server_added; /* used ONLY in ipc.c NOT namework.c */
     242};
     243
    235244/* This is used to hold the list of servers in my domain, and is
    236245   contained within lists of domains. */
     
    281290        bool    needelection;
    282291        int     ElectionCount;
    283         uint32  ElectionCriterion;
     292        uint32_t  ElectionCriterion;
    284293
    285294        /* Domain master browser info. Used for efficient syncs. */
     
    329338                                                struct userdata_struct *,
    330339                                                struct nmb_name *,
    331                                                 uint16,
     340                                                uint16_t,
    332341                                                int,
    333342                                                struct in_addr);
     
    347356                                               struct userdata_struct *,
    348357                                               struct nmb_name *,
    349                                                uint16,
     358                                               uint16_t,
    350359                                               int,
    351360                                               struct in_addr);
     
    378387        struct response_record *prev;
    379388
    380         uint16 response_id;
     389        uint16_t response_id;
    381390
    382391        /* Callbacks for packets received or not. */
Note: See TracChangeset for help on using the changeset viewer.