aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/gnunet_identity_service.h5
-rw-r--r--src/include/gnunet_protocols.h48
2 files changed, 48 insertions, 5 deletions
diff --git a/src/include/gnunet_identity_service.h b/src/include/gnunet_identity_service.h
index f34f7adf2..2ad40791d 100644
--- a/src/include/gnunet_identity_service.h
+++ b/src/include/gnunet_identity_service.h
@@ -233,7 +233,10 @@ GNUNET_IDENTITY_delete (struct GNUNET_IDENTITY_Handle *id,
233 233
234 234
235/** 235/**
236 * Cancel an identity operation. 236 * Cancel an identity operation. Note that the operation MAY still
237 * be executed; this merely cancels the continuation; if the request
238 * was already transmitted, the service may still choose to complete
239 * the operation.
237 * 240 *
238 * @param op operation to cancel 241 * @param op operation to cancel
239 */ 242 */
diff --git a/src/include/gnunet_protocols.h b/src/include/gnunet_protocols.h
index b60fe65d4..a338d7b8e 100644
--- a/src/include/gnunet_protocols.h
+++ b/src/include/gnunet_protocols.h
@@ -1821,9 +1821,6 @@ extern "C"
1821 */ 1821 */
1822#define GNUNET_MESSAGE_TYPE_TESTBED_LOGGER_ACK 601 1822#define GNUNET_MESSAGE_TYPE_TESTBED_LOGGER_ACK 601
1823 1823
1824/**
1825 * Next available: 605
1826 */
1827 1824
1828/******************************************************************************* 1825/*******************************************************************************
1829 * EXPERIMENTATION message types 1826 * EXPERIMENTATION message types
@@ -1854,12 +1851,55 @@ extern "C"
1854 */ 1851 */
1855#define GNUNET_MESSAGE_TYPE_REGEX_RESULT 622 1852#define GNUNET_MESSAGE_TYPE_REGEX_RESULT 622
1856 1853
1854/*******************************************************************************
1855 * IDENTITY message types
1856 ******************************************************************************/
1857
1858/**
1859 * First message send from identity client to service (to subscribe to
1860 * updates).
1861 */
1862#define GNUNET_MESSAGE_TYPE_IDENTITY_START 624
1863
1864/**
1865 * Generic response from identity service with success and/or error message.
1866 */
1867#define GNUNET_MESSAGE_TYPE_IDENTITY_RESULT_CODE 625
1857 1868
1858/** 1869/**
1859 * Next available: 624 1870 * Update about identity status from service to clients.
1860 */ 1871 */
1872#define GNUNET_MESSAGE_TYPE_IDENTITY_UPDATE 626
1861 1873
1874/**
1875 * Client requests to know default identity for a subsystem.
1876 */
1877#define GNUNET_MESSAGE_TYPE_IDENTITY_GET_DEFAULT 627
1862 1878
1879/**
1880 * Client sets default identity; or service informs about default identity.
1881 */
1882#define GNUNET_MESSAGE_TYPE_IDENTITY_SET_DEFAULT 628
1883
1884/**
1885 * Create new identity (client->service).
1886 */
1887#define GNUNET_MESSAGE_TYPE_IDENTITY_CREATE 629
1888
1889/**
1890 * Rename existing identity (client->service).
1891 */
1892#define GNUNET_MESSAGE_TYPE_IDENTITY_RENAME 630
1893
1894/**
1895 * Delete identity (client->service).
1896 */
1897#define GNUNET_MESSAGE_TYPE_IDENTITY_DELETE 631
1898
1899
1900/**
1901 * Next available: 640
1902 */
1863 1903
1864 1904
1865/* WIP: no numbers assigned yet */ 1905/* WIP: no numbers assigned yet */