[Spice-devel] [PATCH 2/2] reds: fix typo
Alon Levy
alevy at redhat.com
Sun Oct 31 07:37:47 PDT 2010
---
server/reds.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/server/reds.c b/server/reds.c
index 7ab4925..9d14320 100644
--- a/server/reds.c
+++ b/server/reds.c
@@ -75,7 +75,7 @@ static SpiceCharDeviceInstance *vdagent = NULL;
#define REDS_AGENT_WINDOW_SIZE 10
#define REDS_TOKENS_TO_SEND 5
#define REDS_NUM_INTERNAL_AGENT_MESSAGES 1
-#define REDS_VDI_PORT_NUM_RECIVE_BUFFS 5
+#define REDS_VDI_PORT_NUM_RECEIVE_BUFFS 5
#define REDS_MAX_SEND_IOVEC 100
#define NET_TEST_WARMUP_BYTES 0
@@ -109,7 +109,7 @@ static void openssl_init();
#define VDI_PORT_WRITE_RETRY_TIMEOUT 100 /*ms*/
// approximate max receive message size
-#define RECIVE_BUF_SIZE \
+#define RECEIVE_BUF_SIZE \
(4096 + (REDS_AGENT_WINDOW_SIZE + REDS_NUM_INTERNAL_AGENT_MESSAGES) * SPICE_AGENT_MAX_DATA_SIZE)
#define SEND_BUF_SIZE 4096
@@ -122,7 +122,7 @@ typedef struct IncomingHandler {
spice_parse_channel_func_t parser;
void *opaque;
int shut;
- uint8_t buf[RECIVE_BUF_SIZE];
+ uint8_t buf[RECEIVE_BUF_SIZE];
uint32_t end_pos;
void (*handle_message)(void *opaque, size_t size, uint32_t type, void *message);
} IncomingHandler;
@@ -208,7 +208,7 @@ typedef struct VDIPortState {
typedef struct InputsState {
Channel *channel;
RedsStreamContext *peer;
- uint8_t buf[RECIVE_BUF_SIZE];
+ uint8_t buf[RECEIVE_BUF_SIZE];
uint32_t end_pos;
IncomingHandler in_handler;
OutgoingHandler out_handler;
@@ -786,7 +786,7 @@ static int handle_incoming(RedsStreamContext *peer, IncomingHandler *handler)
uint8_t *end = buf + pos;
SpiceDataHeader *header;
int n;
- n = peer->cb_read(peer->ctx, buf + pos, RECIVE_BUF_SIZE - pos);
+ n = peer->cb_read(peer->ctx, buf + pos, RECEIVE_BUF_SIZE - pos);
if (n <= 0) {
if (n == 0) {
return -1;
@@ -3671,7 +3671,7 @@ static void init_vd_agent_resources()
ring_add(&reds->agent_state.internal_bufs, &buf->base.link);
}
- for (i = 0; i < REDS_VDI_PORT_NUM_RECIVE_BUFFS; i++) {
+ for (i = 0; i < REDS_VDI_PORT_NUM_RECEIVE_BUFFS; i++) {
VDIReadBuf *buf = spice_new0(VDIReadBuf, 1);
ring_item_init(&buf->link);
ring_add(&reds->agent_state.read_bufs, &buf->link);
--
1.7.3.1
More information about the Spice-devel
mailing list