Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source4/libcli/raw/libcliraw.h

    r414 r745  
    6464        int server_zone;
    6565        time_t server_time;
    66         uint_t readbraw_supported:1;
    67         uint_t writebraw_supported:1;
     66        unsigned int readbraw_supported:1;
     67        unsigned int writebraw_supported:1;
     68        unsigned int lockread_supported:1;
    6869
    6970        char *server_domain;
     
    9394*/
    9495struct smbcli_options {
    95         uint_t use_oplocks:1;
    96         uint_t use_level2_oplocks:1;
    97         uint_t use_spnego:1;
    98         uint_t unicode:1;
    99         uint_t ntstatus_support:1;
     96        unsigned int use_oplocks:1;
     97        unsigned int use_level2_oplocks:1;
     98        unsigned int use_spnego:1;
     99        unsigned int unicode:1;
     100        unsigned int ntstatus_support:1;
    100101        int max_protocol;
    101102        uint32_t max_xmit;
     
    122123        /* is a readbraw pending? we need to handle that case
    123124           specially on receiving packets */
    124         uint_t readbraw_pending:1;
     125        unsigned int readbraw_pending:1;
    125126       
    126127        /* an idle function - if this is defined then it will be
     
    130131                void (*func)(struct smbcli_transport *, void *);
    131132                void *private_data;
    132                 uint_t period;
     133                unsigned int period;
    133134        } idle;
    134135
     
    143144                              SOCKET_WRITE_ERROR,
    144145                              SOCKET_READ_BAD_SIG} socket_error;
    145                         uint_t nbt_error;
     146                        unsigned int nbt_error;
    146147                } e;
    147148        } error;
     
    164165        /* context of the stream -> packet parser */
    165166        struct packet_context *packet;
    166 
    167         /* iconv convenience */
    168         struct smb_iconv_convenience *iconv_convenience;
    169167};
    170168
     
    193191
    194192        struct smbcli_session_options {
    195                 uint_t lanman_auth:1;
    196                 uint_t ntlmv2_auth:1;
    197                 uint_t plaintext_auth:1;
     193                unsigned int lanman_auth:1;
     194                unsigned int ntlmv2_auth:1;
     195                unsigned int plaintext_auth:1;
    198196        } options;
    199197
     
    256254       
    257255        /* the sequence number of this packet - used for signing */
    258         uint_t seq_num;
     256        unsigned int seq_num;
    259257
    260258        /* list of ntcancel request for this requests */
     
    263261        /* set if this is a one-way request, meaning we are not
    264262           expecting a reply from the server. */
    265         uint_t one_way_request:1;
     263        unsigned int one_way_request:1;
    266264
    267265        /* set this when the request should only increment the signing
    268266           counter by one */
    269         uint_t sign_single_increment:1;
     267        unsigned int sign_single_increment:1;
    270268
    271269        /* the caller wants to do the signing check */
Note: See TracChangeset for help on using the changeset viewer.