summaryrefslogtreecommitdiffstats
path: root/source3/rpc_server/rpc_pipes.h
diff options
context:
space:
mode:
Diffstat (limited to 'source3/rpc_server/rpc_pipes.h')
-rw-r--r--source3/rpc_server/rpc_pipes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/rpc_server/rpc_pipes.h b/source3/rpc_server/rpc_pipes.h
index 3f585798d61..e65209aefc0 100644
--- a/source3/rpc_server/rpc_pipes.h
+++ b/source3/rpc_server/rpc_pipes.h
@@ -33,7 +33,7 @@ typedef struct _output_data {
DATA_BLOB rdata;
/* The amount of data sent from the current rdata struct. */
- uint32 data_sent_length;
+ uint32_t data_sent_length;
/*
* The current fragment being returned. This inclues
@@ -42,7 +42,7 @@ typedef struct _output_data {
DATA_BLOB frag;
/* The amount of data sent from the current PDU. */
- uint32 current_pdu_sent;
+ uint32_t current_pdu_sent;
} output_data;
typedef struct _input_data {
@@ -61,7 +61,7 @@ typedef struct _input_data {
* If this is zero, then we are at the start of a new
* pdu.
*/
- uint32 pdu_needed_len;
+ uint32_t pdu_needed_len;
/*
* This is the collection of input data with all
@@ -79,7 +79,7 @@ struct pipes_struct;
struct api_struct {
const char *name;
- uint8 opnum;
+ uint8_t opnum;
bool (*fn) (struct pipes_struct *);
};