summaryrefslogtreecommitdiff
path: root/source4/include/cli_context.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-06-01 08:12:45 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:23 -0500
commitfa2e9ec311b99dee2fbff5ee5fa2c743298dacad (patch)
tree35dc6a43cb10399e427b2fcd76d24cc23c77151d /source4/include/cli_context.h
parentb88fc7a3911e0ff8b6d7d324028e351281e94c46 (diff)
downloadsamba-fa2e9ec311b99dee2fbff5ee5fa2c743298dacad.tar.gz
samba-fa2e9ec311b99dee2fbff5ee5fa2c743298dacad.tar.bz2
samba-fa2e9ec311b99dee2fbff5ee5fa2c743298dacad.zip
r960: convert 'unsigned int' to uint_t in the most places
metze (This used to be commit 18062d2ed9fc9224c43143c10efbf2f6f1f5bbe0)
Diffstat (limited to 'source4/include/cli_context.h')
-rw-r--r--source4/include/cli_context.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source4/include/cli_context.h b/source4/include/cli_context.h
index 4cfdc8db91..b0e178e1d0 100644
--- a/source4/include/cli_context.h
+++ b/source4/include/cli_context.h
@@ -62,8 +62,8 @@ struct cli_negotiate {
int server_zone;
time_t server_time;
- unsigned int readbraw_supported:1;
- unsigned int writebraw_supported:1;
+ uint_t readbraw_supported:1;
+ uint_t writebraw_supported:1;
const char *server_domain;
};
@@ -99,9 +99,9 @@ struct cli_socket {
client library
*/
struct cli_options {
- unsigned int use_oplocks:1;
- unsigned int use_level2_oplocks:1;
- unsigned int use_spnego:1;
+ uint_t use_oplocks:1;
+ uint_t use_level2_oplocks:1;
+ uint_t use_spnego:1;
};
/* this is the context for the client transport layer */
@@ -126,7 +126,7 @@ struct cli_transport {
/* is a readbraw pending? we need to handle that case
specially on receiving packets */
- unsigned int readbraw_pending:1;
+ uint_t readbraw_pending:1;
/* an idle function - if this is defined then it will be
called once every period milliseconds while we are waiting
@@ -236,7 +236,7 @@ struct cli_request {
/* set if this is a one-way request, meaning we are not
expecting a reply from the server. */
- unsigned int one_way_request:1;
+ uint_t one_way_request:1;
/* the mid of this packet - used to match replies */
uint16_t mid;