aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorharsha <harsha@140774ce-b5e7-0310-ab8b-a85725594a96>2012-12-11 11:14:24 +0000
committerharsha <harsha@140774ce-b5e7-0310-ab8b-a85725594a96>2012-12-11 11:14:24 +0000
commit6fadee4acf99d4574738b7f60621eff496d09ff6 (patch)
tree13285f304f3a128320255df548d69f80c6ba7d70 /src
parent07ed3d8e48a668cd539561aa37c3a4447b486768 (diff)
- rename
git-svn-id: https://gnunet.org/svn/gnunet@25388 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src')
-rw-r--r--src/fs/gnunet-service-fs_stream.c18
-rw-r--r--src/include/gnunet_stream_lib.h14
-rw-r--r--src/stream/perf_stream_api.c4
-rw-r--r--src/stream/stream_api.c45
-rw-r--r--src/stream/test_stream_2peers.c4
-rw-r--r--src/stream/test_stream_2peers_halfclose.c4
-rw-r--r--src/stream/test_stream_big.c4
-rw-r--r--src/stream/test_stream_local.c4
-rw-r--r--src/stream/test_stream_sequence_wraparound.c4
9 files changed, 51 insertions, 50 deletions
diff --git a/src/fs/gnunet-service-fs_stream.c b/src/fs/gnunet-service-fs_stream.c
index 84fdf463db..3838b1c243 100644
--- a/src/fs/gnunet-service-fs_stream.c
+++ b/src/fs/gnunet-service-fs_stream.c
@@ -89,12 +89,12 @@ struct StreamClient
/**
* Handle for active read operation, or NULL.
*/
- struct GNUNET_STREAM_IOReadHandle *rh;
+ struct GNUNET_STREAM_ReadHandle *rh;
/**
* Handle for active write operation, or NULL.
*/
- struct GNUNET_STREAM_IOWriteHandle *wh;
+ struct GNUNET_STREAM_WriteHandle *wh;
/**
* Head of write queue.
@@ -268,12 +268,12 @@ struct StreamHandle
/**
* Handle for active read operation, or NULL.
*/
- struct GNUNET_STREAM_IOReadHandle *rh;
+ struct GNUNET_STREAM_ReadHandle *rh;
/**
* Handle for active write operation, or NULL.
*/
- struct GNUNET_STREAM_IOWriteHandle *wh;
+ struct GNUNET_STREAM_WriteHandle *wh;
/**
* Tokenizer for replies.
@@ -387,9 +387,9 @@ destroy_stream_handle (struct StreamHandle *sh)
&free_waiting_entry,
sh);
if (NULL != sh->wh)
- GNUNET_STREAM_io_write_cancel (sh->wh);
+ GNUNET_STREAM_write_cancel (sh->wh);
if (NULL != sh->rh)
- GNUNET_STREAM_io_read_cancel (sh->rh);
+ GNUNET_STREAM_read_cancel (sh->rh);
if (GNUNET_SCHEDULER_NO_TASK != sh->timeout_task)
GNUNET_SCHEDULER_cancel (sh->timeout_task);
if (GNUNET_SCHEDULER_NO_TASK != sh->reset_task)
@@ -472,7 +472,7 @@ reset_stream (struct StreamHandle *sh)
GNUNET_i2s (&sh->target));
if (NULL != sh->rh)
{
- GNUNET_STREAM_io_read_cancel (sh->rh);
+ GNUNET_STREAM_read_cancel (sh->rh);
sh->rh = NULL;
}
GNUNET_STREAM_close (sh->stream);
@@ -934,9 +934,9 @@ terminate_stream (struct StreamClient *sc)
if (GNUNET_SCHEDULER_NO_TASK != sc->timeout_task)
GNUNET_SCHEDULER_cancel (sc->timeout_task);
if (NULL != sc->rh)
- GNUNET_STREAM_io_read_cancel (sc->rh);
+ GNUNET_STREAM_read_cancel (sc->rh);
if (NULL != sc->wh)
- GNUNET_STREAM_io_write_cancel (sc->wh);
+ GNUNET_STREAM_write_cancel (sc->wh);
if (NULL != sc->qe)
GNUNET_DATASTORE_cancel (sc->qe);
GNUNET_SERVER_mst_destroy (sc->mst);
diff --git a/src/include/gnunet_stream_lib.h b/src/include/gnunet_stream_lib.h
index 909c659d78..8a1f22f47a 100644
--- a/src/include/gnunet_stream_lib.h
+++ b/src/include/gnunet_stream_lib.h
@@ -291,13 +291,13 @@ typedef void (*GNUNET_STREAM_CompletionContinuation) (void *cls,
/**
* Handle to cancel IO write operations.
*/
-struct GNUNET_STREAM_IOWriteHandle;
+struct GNUNET_STREAM_WriteHandle;
/**
* Handle to cancel IO read operations.
*/
-struct GNUNET_STREAM_IOReadHandle;
+struct GNUNET_STREAM_ReadHandle;
/**
* Tries to write the given data to the stream. The maximum size of data that
@@ -318,7 +318,7 @@ struct GNUNET_STREAM_IOReadHandle;
* is broken then write_cont is immediately called and NULL is
* returned.
*/
-struct GNUNET_STREAM_IOWriteHandle *
+struct GNUNET_STREAM_WriteHandle *
GNUNET_STREAM_write (struct GNUNET_STREAM_Socket *socket,
const void *data,
size_t size,
@@ -347,7 +347,7 @@ typedef size_t (*GNUNET_STREAM_DataProcessor) (void *cls,
/**
* Tries to read data from the stream. Should not be called when another read
* handle is present; the existing read handle should be canceled with
- * GNUNET_STREAM_io_read_cancel(). Only one read handle per socket is present at
+ * GNUNET_STREAM_read_cancel(). Only one read handle per socket is present at
* any time
*
* @param socket the socket representing a stream
@@ -358,7 +358,7 @@ typedef size_t (*GNUNET_STREAM_DataProcessor) (void *cls,
* been shutdown for this type of opeartion (the DataProcessor is
* immediately called with GNUNET_STREAM_SHUTDOWN as status)
*/
-struct GNUNET_STREAM_IOReadHandle *
+struct GNUNET_STREAM_ReadHandle *
GNUNET_STREAM_read (struct GNUNET_STREAM_Socket *socket,
struct GNUNET_TIME_Relative timeout,
GNUNET_STREAM_DataProcessor proc,
@@ -383,7 +383,7 @@ GNUNET_STREAM_read (struct GNUNET_STREAM_Socket *socket,
* @param ioh handle to operation to cancel
*/
void
-GNUNET_STREAM_io_write_cancel (struct GNUNET_STREAM_IOWriteHandle *iowh);
+GNUNET_STREAM_write_cancel (struct GNUNET_STREAM_WriteHandle *iowh);
/**
@@ -392,7 +392,7 @@ GNUNET_STREAM_io_write_cancel (struct GNUNET_STREAM_IOWriteHandle *iowh);
* @param ioh handle to operation to cancel
*/
void
-GNUNET_STREAM_io_read_cancel (struct GNUNET_STREAM_IOReadHandle *iorh);
+GNUNET_STREAM_read_cancel (struct GNUNET_STREAM_ReadHandle *iorh);
#if 0
diff --git a/src/stream/perf_stream_api.c b/src/stream/perf_stream_api.c
index 310e4c5ef8..a3f188a8f8 100644
--- a/src/stream/perf_stream_api.c
+++ b/src/stream/perf_stream_api.c
@@ -103,12 +103,12 @@ struct PeerData
/**
* Peer's io write handle
*/
- struct GNUNET_STREAM_IOWriteHandle *io_write_handle;
+ struct GNUNET_STREAM_WriteHandle *io_write_handle;
/**
* Peer's io read handle
*/
- struct GNUNET_STREAM_IOReadHandle *io_read_handle;
+ struct GNUNET_STREAM_ReadHandle *io_read_handle;
/**
* The peer handle when we use the testbed servie
diff --git a/src/stream/stream_api.c b/src/stream/stream_api.c
index 1ca4031f2b..0083e63fbe 100644
--- a/src/stream/stream_api.c
+++ b/src/stream/stream_api.c
@@ -217,12 +217,12 @@ struct GNUNET_STREAM_Socket
/**
* The write IO_handle associated with this socket
*/
- struct GNUNET_STREAM_IOWriteHandle *write_handle;
+ struct GNUNET_STREAM_WriteHandle *write_handle;
/**
* The read IO_handle associated with this socket
*/
- struct GNUNET_STREAM_IOReadHandle *read_handle;
+ struct GNUNET_STREAM_ReadHandle *read_handle;
/**
* The shutdown handle associated with this socket
@@ -459,7 +459,7 @@ struct GNUNET_STREAM_ListenSocket
/**
* The IO Write Handle
*/
-struct GNUNET_STREAM_IOWriteHandle
+struct GNUNET_STREAM_WriteHandle
{
/**
* The socket to which this write handle is associated
@@ -511,7 +511,7 @@ struct GNUNET_STREAM_IOWriteHandle
/**
* The IO Read Handle
*/
-struct GNUNET_STREAM_IOReadHandle
+struct GNUNET_STREAM_ReadHandle
{
/**
* The socket to which this read handle is associated
@@ -901,7 +901,7 @@ ackbitmap_is_bit_set (const GNUNET_STREAM_AckBitmap *bitmap,
static void
write_data (struct GNUNET_STREAM_Socket *socket)
{
- struct GNUNET_STREAM_IOWriteHandle *io_handle = socket->write_handle;
+ struct GNUNET_STREAM_WriteHandle *io_handle = socket->write_handle;
unsigned int packet;
for (packet=0; packet < io_handle->packets_sent; packet++)
@@ -958,7 +958,7 @@ write_data (struct GNUNET_STREAM_Socket *socket)
static void
cleanup_read_handle (struct GNUNET_STREAM_Socket *socket)
{
- struct GNUNET_STREAM_IOReadHandle *read_handle;
+ struct GNUNET_STREAM_ReadHandle *read_handle;
read_handle = socket->read_handle;
/* Read io time task should be there; if it is already executed then this
@@ -987,7 +987,7 @@ call_read_processor (void *cls,
const struct GNUNET_SCHEDULER_TaskContext *tc)
{
struct GNUNET_STREAM_Socket *socket = cls;
- struct GNUNET_STREAM_IOReadHandle *read_handle;
+ struct GNUNET_STREAM_ReadHandle *read_handle;
GNUNET_STREAM_DataProcessor proc;
void *proc_cls;
size_t read_size;
@@ -1101,7 +1101,7 @@ read_io_timeout (void *cls,
const struct GNUNET_SCHEDULER_TaskContext *tc)
{
struct GNUNET_STREAM_Socket *socket = cls;
- struct GNUNET_STREAM_IOReadHandle *read_handle;
+ struct GNUNET_STREAM_ReadHandle *read_handle;
GNUNET_STREAM_DataProcessor proc;
void *proc_cls;
@@ -1964,7 +1964,7 @@ handle_receive_close (struct GNUNET_STREAM_Socket *socket,
wc = socket->write_handle->write_cont;
wc_cls = socket->write_handle->write_cont_cls;
- GNUNET_STREAM_io_write_cancel (socket->write_handle);
+ GNUNET_STREAM_write_cancel (socket->write_handle);
socket->write_handle = NULL;
if (NULL != wc)
wc (wc_cls,
@@ -2091,7 +2091,7 @@ handle_close (struct GNUNET_STREAM_Socket *socket,
wc = socket->write_handle->write_cont;
wc_cls = socket->write_handle->write_cont_cls;
- GNUNET_STREAM_io_write_cancel (socket->write_handle);
+ GNUNET_STREAM_write_cancel (socket->write_handle);
socket->write_handle = NULL;
if (NULL != wc)
wc (wc_cls,
@@ -2543,7 +2543,7 @@ handle_ack (struct GNUNET_STREAM_Socket *socket,
const struct GNUNET_STREAM_AckMessage *ack,
const struct GNUNET_ATS_Information*atsi)
{
- struct GNUNET_STREAM_IOWriteHandle *write_handle;
+ struct GNUNET_STREAM_WriteHandle *write_handle;
uint64_t ack_bitmap;
unsigned int packet;
int need_retransmission;
@@ -3274,13 +3274,13 @@ GNUNET_STREAM_close (struct GNUNET_STREAM_Socket *socket)
{
LOG (GNUNET_ERROR_TYPE_WARNING,
"Closing STREAM socket when a read handle is pending\n");
- GNUNET_STREAM_io_read_cancel (socket->read_handle);
+ GNUNET_STREAM_read_cancel (socket->read_handle);
}
if (NULL != socket->write_handle)
{
LOG (GNUNET_ERROR_TYPE_WARNING,
"Closing STREAM socket when a write handle is pending\n");
- GNUNET_STREAM_io_write_cancel (socket->write_handle);
+ GNUNET_STREAM_write_cancel (socket->write_handle);
//socket->write_handle = NULL;
}
/* Terminate the ack'ing task if they are still present */
@@ -3465,7 +3465,7 @@ GNUNET_STREAM_listen_close (struct GNUNET_STREAM_ListenSocket *lsocket)
* is broken then write_cont is immediately called and NULL is
* returned.
*/
-struct GNUNET_STREAM_IOWriteHandle *
+struct GNUNET_STREAM_WriteHandle *
GNUNET_STREAM_write (struct GNUNET_STREAM_Socket *socket,
const void *data,
size_t size,
@@ -3473,7 +3473,7 @@ GNUNET_STREAM_write (struct GNUNET_STREAM_Socket *socket,
GNUNET_STREAM_CompletionContinuation write_cont,
void *write_cont_cls)
{
- struct GNUNET_STREAM_IOWriteHandle *io_handle;
+ struct GNUNET_STREAM_WriteHandle *io_handle;
struct GNUNET_STREAM_DataMessage *data_msg;
const void *sweep;
struct GNUNET_TIME_Relative ack_deadline;
@@ -3524,7 +3524,7 @@ GNUNET_STREAM_write (struct GNUNET_STREAM_Socket *socket,
size = GNUNET_STREAM_ACK_BITMAP_BIT_LENGTH * socket->max_payload_size;
num_needed_packets =
(size + (socket->max_payload_size - 1)) / socket->max_payload_size;
- io_handle = GNUNET_malloc (sizeof (struct GNUNET_STREAM_IOWriteHandle));
+ io_handle = GNUNET_malloc (sizeof (struct GNUNET_STREAM_WriteHandle));
io_handle->socket = socket;
io_handle->write_cont = write_cont;
io_handle->write_cont_cls = write_cont_cls;
@@ -3609,7 +3609,8 @@ probe_data_availability (void *cls,
/**
* Tries to read data from the stream. Should not be called when another read
* handle is present; the existing read handle should be canceled with
- * GNUNET_STREAM_io_read_cancel(). Only one read handle per socket is present at any time
+ * GNUNET_STREAM_read_cancel(). Only one read handle per socket is present at
+ * any time
*
* @param socket the socket representing a stream
* @param timeout the timeout period
@@ -3622,13 +3623,13 @@ probe_data_availability (void *cls,
* read handle is present (only one read handle per socket is present
* at any time)
*/
-struct GNUNET_STREAM_IOReadHandle *
+struct GNUNET_STREAM_ReadHandle *
GNUNET_STREAM_read (struct GNUNET_STREAM_Socket *socket,
struct GNUNET_TIME_Relative timeout,
GNUNET_STREAM_DataProcessor proc,
void *proc_cls)
{
- struct GNUNET_STREAM_IOReadHandle *read_handle;
+ struct GNUNET_STREAM_ReadHandle *read_handle;
LOG (GNUNET_ERROR_TYPE_DEBUG,
"%s: %s()\n",
@@ -3657,7 +3658,7 @@ GNUNET_STREAM_read (struct GNUNET_STREAM_Socket *socket,
default:
break;
}
- read_handle = GNUNET_malloc (sizeof (struct GNUNET_STREAM_IOReadHandle));
+ read_handle = GNUNET_malloc (sizeof (struct GNUNET_STREAM_ReadHandle));
read_handle->proc = proc;
read_handle->proc_cls = proc_cls;
read_handle->socket = socket;
@@ -3678,7 +3679,7 @@ GNUNET_STREAM_read (struct GNUNET_STREAM_Socket *socket,
* @param ioh handle to operation to cancel
*/
void
-GNUNET_STREAM_io_write_cancel (struct GNUNET_STREAM_IOWriteHandle *ioh)
+GNUNET_STREAM_write_cancel (struct GNUNET_STREAM_WriteHandle *ioh)
{
struct GNUNET_STREAM_Socket *socket = ioh->socket;
unsigned int packet;
@@ -3706,7 +3707,7 @@ GNUNET_STREAM_io_write_cancel (struct GNUNET_STREAM_IOWriteHandle *ioh)
* @param ioh handle to operation to cancel
*/
void
-GNUNET_STREAM_io_read_cancel (struct GNUNET_STREAM_IOReadHandle *ioh)
+GNUNET_STREAM_read_cancel (struct GNUNET_STREAM_ReadHandle *ioh)
{
struct GNUNET_STREAM_Socket *socket;
diff --git a/src/stream/test_stream_2peers.c b/src/stream/test_stream_2peers.c
index 3ddd1aa46c..1dd15fdd1e 100644
--- a/src/stream/test_stream_2peers.c
+++ b/src/stream/test_stream_2peers.c
@@ -61,12 +61,12 @@ struct PeerData
/**
* Peer's io write handle
*/
- struct GNUNET_STREAM_IOWriteHandle *io_write_handle;
+ struct GNUNET_STREAM_WriteHandle *io_write_handle;
/**
* Peer's io read handle
*/
- struct GNUNET_STREAM_IOReadHandle *io_read_handle;
+ struct GNUNET_STREAM_ReadHandle *io_read_handle;
/**
* Peer's shutdown handle
diff --git a/src/stream/test_stream_2peers_halfclose.c b/src/stream/test_stream_2peers_halfclose.c
index 617ab99a8f..8528808685 100644
--- a/src/stream/test_stream_2peers_halfclose.c
+++ b/src/stream/test_stream_2peers_halfclose.c
@@ -55,12 +55,12 @@ struct PeerData
/**
* Peer's io write handle
*/
- struct GNUNET_STREAM_IOWriteHandle *io_write_handle;
+ struct GNUNET_STREAM_WriteHandle *io_write_handle;
/**
* Peer's io read handle
*/
- struct GNUNET_STREAM_IOReadHandle *io_read_handle;
+ struct GNUNET_STREAM_ReadHandle *io_read_handle;
/**
* Peer's shutdown handle
diff --git a/src/stream/test_stream_big.c b/src/stream/test_stream_big.c
index 1546c96729..a923f374c9 100644
--- a/src/stream/test_stream_big.c
+++ b/src/stream/test_stream_big.c
@@ -53,12 +53,12 @@ struct PeerData
/**
* Peer's io write handle
*/
- struct GNUNET_STREAM_IOWriteHandle *io_write_handle;
+ struct GNUNET_STREAM_WriteHandle *io_write_handle;
/**
* Peer's io read handle
*/
- struct GNUNET_STREAM_IOReadHandle *io_read_handle;
+ struct GNUNET_STREAM_ReadHandle *io_read_handle;
/**
* Peer's shutdown handle
diff --git a/src/stream/test_stream_local.c b/src/stream/test_stream_local.c
index be299cd06e..587c56cebf 100644
--- a/src/stream/test_stream_local.c
+++ b/src/stream/test_stream_local.c
@@ -52,12 +52,12 @@ struct PeerData
/**
* Peer's io write handle
*/
- struct GNUNET_STREAM_IOWriteHandle *io_write_handle;
+ struct GNUNET_STREAM_WriteHandle *io_write_handle;
/**
* Peer's io read handle
*/
- struct GNUNET_STREAM_IOReadHandle *io_read_handle;
+ struct GNUNET_STREAM_ReadHandle *io_read_handle;
/**
* Peer's shutdown handle
diff --git a/src/stream/test_stream_sequence_wraparound.c b/src/stream/test_stream_sequence_wraparound.c
index 1e1cfa3bcb..ac230f2b39 100644
--- a/src/stream/test_stream_sequence_wraparound.c
+++ b/src/stream/test_stream_sequence_wraparound.c
@@ -56,12 +56,12 @@ struct PeerData
/**
* Peer's io write handle
*/
- struct GNUNET_STREAM_IOWriteHandle *io_write_handle;
+ struct GNUNET_STREAM_WriteHandle *io_write_handle;
/**
* Peer's io read handle
*/
- struct GNUNET_STREAM_IOReadHandle *io_read_handle;
+ struct GNUNET_STREAM_ReadHandle *io_read_handle;
/**
* Peer's shutdown handle