aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorgrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2010-04-28 15:08:13 +0000
committergrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2010-04-28 15:08:13 +0000
commit3a99f593bf2bb72767f98b9cfaeccb671b6c9988 (patch)
tree1e518f6303af98fbaa39e228b3ae1b498f5abea1 /src/include
parentafe9f417c236e81894b4b8d4df1148427eb65eeb (diff)
first work on serialization
git-svn-id: https://gnunet.org/svn/gnunet@11104 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_fs_service.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/include/gnunet_fs_service.h b/src/include/gnunet_fs_service.h
index acd059c961..508abeedbf 100644
--- a/src/include/gnunet_fs_service.h
+++ b/src/include/gnunet_fs_service.h
@@ -1467,8 +1467,7 @@ enum GNUNET_FS_Flags
};
/**
- * Options specified in the VARARGs
- * portion of GNUNET_FS_start.
+ * Options specified in the VARARGs portion of GNUNET_FS_start.
*/
enum GNUNET_FS_OPTIONS
{
@@ -1941,15 +1940,15 @@ GNUNET_FS_publish_start (struct GNUNET_FS_Handle *h,
/**
- * Stop an upload. Will abort incomplete uploads (but
- * not remove blocks that have already been publishd) or
- * simply clean up the state for completed uploads.
+ * Stop a publication. Will abort incomplete publications (but
+ * not remove blocks that have already been published) or
+ * simply clean up the state for completed publications.
* Must NOT be called from within the event callback!
*
- * @param sc context for the upload to stop
+ * @param pc context for the publication to stop
*/
void
-GNUNET_FS_publish_stop (struct GNUNET_FS_PublishContext *sc);
+GNUNET_FS_publish_stop (struct GNUNET_FS_PublishContext *pc);
/**