summaryrefslogtreecommitdiff
path: root/libpurple/server.h
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2022-10-01 01:05:38 -0500
committerGary Kramlich <grim@reaperworld.com>2022-10-01 01:05:38 -0500
commitfbd61268e5ce883f40fe405c5e63bd5abefc4fcb (patch)
tree81596406cda0d3f62693d29d1f9717d4055840af /libpurple/server.h
parent7bfe323ac428a4b97b28741b91d46b9830bb305c (diff)
downloadpidgin-fbd61268e5ce883f40fe405c5e63bd5abefc4fcb.tar.gz
Remove the server privacy api that was just proxying to PurpleProtocolPrivacy
There's a bunch of duplicated code here, but privacy has need an overhaul for a long time, and making it harder to work with will hopefully speed that up. Testing Done: Compiled Reviewed at https://reviews.imfreedom.org/r/1868/
Diffstat (limited to 'libpurple/server.h')
-rw-r--r--libpurple/server.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/libpurple/server.h b/libpurple/server.h
index 293082807f..3a03b6360c 100644
--- a/libpurple/server.h
+++ b/libpurple/server.h
@@ -95,54 +95,6 @@ void purple_serv_get_info(PurpleConnection *gc, const char *name);
void purple_serv_set_info(PurpleConnection *gc, const char *info);
/******************************************************************************
- * Privacy interface
- *****************************************************************************/
-
-/**
- * purple_serv_add_permit:
- * @gc: The connection over which to send the typing notification.
- * @name: The name of the remote user.
- *
- * Add the buddy on the required authorized list.
- */
-void purple_serv_add_permit(PurpleConnection *gc, const char *name);
-
-/**
- * purple_serv_add_deny:
- * @gc: The connection over which to send the typing notification.
- * @name: The name of the remote user.
- *
- * Add the buddy on the required blocked list.
- */
-void purple_serv_add_deny(PurpleConnection *gc, const char *name);
-
-/**
- * purple_serv_remove_permit:
- * @gc: The connection over which to send the typing notification.
- * @name: The name of the remote user.
- *
- * Remove the buddy from the required authorized list.
- */
-void purple_serv_remove_permit(PurpleConnection *gc, const char *name);
-
-/**
- * purple_serv_remove_deny:
- * @gc: The connection over which to send the typing notification.
- * @name: The name of the remote user.
- *
- * Remove the buddy from the required blocked list.
- */
-void purple_serv_remove_deny(PurpleConnection *gc, const char *name);
-
-/**
- * purple_serv_set_permit_deny:
- * @gc: The connection over which to send the typing notification.
- *
- * Update the server with the privacy information on the permit and deny lists.
- */
-void purple_serv_set_permit_deny(PurpleConnection *gc);
-
-/******************************************************************************
* Chat Interface
*****************************************************************************/