/usr/include/fetion_group.h is in libofetion-dev 2.2.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | /***************************************************************************
* Copyright (C) 2010 by lwp *
* levin108@gmail.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. *
* *
* OpenSSL linking exception *
* -------------------------- *
* If you modify this Program, or any covered work, by linking or *
* combining it with the OpenSSL project's "OpenSSL" library (or a *
* modified version of that library), containing parts covered by *
* the terms of OpenSSL/SSLeay license, the licensors of this *
* Program grant you additional permission to convey the resulting *
* work. Corresponding Source for a non-source form of such a *
* combination shall include the source code for the parts of the *
* OpenSSL library used as well as that of the covered work. *
***************************************************************************/
#ifndef FETION_GROUP_H
#define FETION_GROUP_H
#define foreach_pg_group(head , cur) \
for(cur = head; (cur = cur->next) != head ;)
/**
* send get group list request to server
* @param user Global User object
*/
extern int pg_group_get_list(User *user);
/**
* parse the response string for get group list request
* @param sipmsg The response string
* @return head of group list
*/
extern PGGroup *pg_group_parse_list(const char *sipmsg);
/**
* send a get group information request to server
* @param user Global User object
* @param pg To specify which group to get information for
*/
extern int pg_group_get_info(User *user , PGGroup *pg);
/**
* send a group subscribtion request to server
* @param user Global User object
* @param pg To specify which group to subscribe
*/
extern int pg_group_subscribe(User *user , PGGroup *pg);
/**
* parse the response string of get group info request
* @param pg The head of the group list
* @param sipmsg The response string to be parsed
*/
extern int pg_group_parse_info(PGGroup *pg , const char *sipmsg );
/**
* send a get group members request to server
* @param user Global User object
* @param pg To specify which group to get members for
*/
extern int pg_group_get_group_members(User *user , PGGroup *pg);
/**
* parse the response string of get members request
* @param pggroup The head of group list
* @param sipmsg The response string
*/
extern int pg_group_parse_member_list(PGGroup *pggroup , const char *sipmsg);
#define foreach_pg_member(head , cur) \
for(cur = head; (cur = cur->next)!= head ;)
/**
* Construct a PGGroupMember object
*/
extern PGGroupMember *pg_group_member_new();
/**
* parse the member presence information pushed from the server
* @param pg The head of the group list
* @param the notification sip message
*/
extern int pg_group_parse_member(PGGroup *pg , const char *sipmsg);
/**
* send update group member information request to server
* and sip message containing user information will be pushed from the server
* @param user Global User object
* @param To specify which group will update its member information
*/
extern int pg_group_update_group_info(User *user , PGGroup *pg);
/**
* get member count of a specified group
* @param pg The group to be calculated
* @return the member count of the specified group
*/
extern int pg_group_get_member_count(PGGroup *pg);
/**
* parse the body of respones string pushed from the server after function
* "pg_group_update_group_info()" was called
* @param the information sip message
* @return A new contact parsed from the xml
*/
extern Contact* pg_group_parse_contact_info(const char* xml);
/**
* send a dialog invitation to a specified group
* @param user Global User object
* @param pg To specfy which group the invitation will be sent to
*/
extern int pg_group_send_invitation(User *user , PGGroup *pg);
/**
* send a group message to a specified group
* @param user Global User object
* @param pg To specify whicl group the message will be sent to
* @param message The message body
*/
extern int pg_group_send_message(User *user , PGGroup *pg , const char *message);
/**
* send a group sms to a specified group
* @param user Global User object
* @param pg To specify whicl group the message will be sent to
* @param message The message body
*/
extern int pg_group_send_sms(User *user , PGGroup *pg , const char *message);
/**
* send an acknowledge message after receiving the dialog invitation response message
* @param user Global User object
* @param sipmsg The dialog invitation response message
*/
extern int pg_group_send_invite_ack(User *user , const char *sipmsg);
#endif
|