diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-08-19 11:15:13 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-08-19 11:15:13 +0200 |
commit | 6c1e93877194aa2c0cbd50a3636a1532dd521e3b (patch) | |
tree | 391aba9fa756b293805d1c490415b2547e07f234 /src | |
parent | 598375363d2b491d97972cb4ec10ebe72343716c (diff) |
-add API todo
Diffstat (limited to 'src')
-rw-r--r-- | src/include/gnunet_setu_service.h | 13 | ||||
-rw-r--r-- | src/setu/.gitignore | 6 |
2 files changed, 19 insertions, 0 deletions
diff --git a/src/include/gnunet_setu_service.h b/src/include/gnunet_setu_service.h index d737b97c1..459a6156b 100644 --- a/src/include/gnunet_setu_service.h +++ b/src/include/gnunet_setu_service.h @@ -85,6 +85,13 @@ enum GNUNET_SETU_Status GNUNET_SETU_STATUS_ADD_LOCAL, /** + * Element should be added to the result set of the remote peer, i.e. the + * remote peer is missing an element. Only used if + * #GNUNET_SETU_OPTION_SYMMETRIC is set. + */ + GNUNET_SETU_STATUS_ADD_REMOTE, + + /** * The other peer refused to do the operation with us, or something went * wrong. */ @@ -152,6 +159,12 @@ enum GNUNET_SETU_OptionType * detection. */ GNUNET_SETU_OPTION_FORCE_DELTA=4, + + /** + * Notify client also if we are sending a value to the other peer. + * FIXME: not implemented! + */ + GNUNET_SETU_OPTION_SYMMETRIC = 8 }; diff --git a/src/setu/.gitignore b/src/setu/.gitignore new file mode 100644 index 000000000..35295449b --- /dev/null +++ b/src/setu/.gitignore @@ -0,0 +1,6 @@ +gnunet-setu-profiler +gnunet-service-setu +gnunet-setu-ibf-profiler +test_setu_api +test_setu_copy +test_setu_result_symmetric |