/usr/include/fetion_contact.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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | /***************************************************************************
* 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_CONTACT_H
#define FETION_CONTACT_H
typedef enum
{
FETION_NO = 1,
MOBILE_NO
} NumberType;
typedef enum
{
BUDDY_OK = 200 ,
BUDDY_SAME_USER_DAILY_LIMIT = 486 ,
BUDDY_USER_EXIST = 521 ,
BUDDY_BAD_REQUEST = 400
} AddBuddyType;
#define foreach_contactlist(head , cl) \
for(cl = head ; (cl = cl->next) != head ;)
#define foreach_groupids(groupids) { char group_str[16] = { 0 }, *pos, *tmp; \
int group_id; tmp = groupids; \
while(*tmp) { \
for(pos = group_str; *tmp != '\0' && *tmp != ';'; *pos++ = *tmp++); \
*pos = '\0'; if (*tmp == ';') tmp ++; group_id = atoi(group_str); \
#define end_groupids(groupids) }}
/**
* constuct a Contact object
*/
extern Contact* fetion_contact_new();
/**
* append a contact object to the contact list
*/
extern void fetion_contact_list_append(Contact* cl , Contact* contact);
/**
* find the contact in the contact list by the specified userid
*/
extern Contact *fetion_contact_list_find_by_userid(Contact* contactlist , const char* userid);
/**
* find the contact in the contact list by the specified userid
*/
extern Contact *fetion_contact_list_find_by_mobileno(Contact *contactlist, const char *mobileno);
/**
* find the contact in the contact list by the specified sipuri
*/
extern Contact* fetion_contact_list_find_by_sipuri(Contact* contactlist , const char* sipuri);
/**
* remove a contact with the specified userid from the contact list
*/
extern void fetion_contact_list_remove_by_userid(Contact* contactlist , const char* userid);
extern void fetion_contact_list_remove(Contact *contact);
/**
* free the resource of the while contact list
* @param contactlist the head of the contact list
*/
extern void fetion_contact_list_free(Contact* contactlist);
/**
* test whether there is an ungrouped contact in the contact list
* @param contactlist the head of the contact list
* @return 1 if there is ungrouped contact , or else -1
*/
extern int fetion_contact_has_ungrouped(Contact *contactlist);
/**
* test whether there is a stranger contact in the contact list
* @param contactlist the head of the contact list
* @return 1 if there is a stranger contact , or else -1
*/
extern int fetion_contact_has_strangers(Contact *contactlist);
/**
* subscribe the contact`s information after login,and then
* the presence information of contacts will be pushed from the server
* @return 1 if success , or else -1
*/
extern int fetion_contact_subscribe_only(User* user);
/**
* get the contact`s detail information from the sipc server
* @param user Global User object
* @param userid The user-id of the contact for which to get information
* @return The Contact object with detail information if success , or else NULL
*/
extern Contact* fetion_contact_get_contact_info(User* user , const char* userid);
/**
* get the contact`s detail information from the sipc server with the specified number type
* @param user Global User object
* @param userid The user-id of the contact for which to get information
* @param no Fetion number if 'nt' is FETION_NO , or phone number if 'nt' is MOBILE_NO
* @param nt Number type to specify the type of the second argument
* @return The Contact object with detail information if success , or else NULL
*/
extern Contact* fetion_contact_get_contact_info_by_no(User* user , const char* no , NumberType nt);
/**
* modify whether to show your mobile phone number to the user specified by userid
* @param user Global User object
* @param userid The user-id of the user for whom to set permission
* @param show If set to 1,then show phone number to this user , while 0 not show
* @return 1 if success , or else -1
*/
extern int fetion_contact_set_mobileno_permission(User* user , const char* userid , int show);
/**
* modify the display name of the user specified by the userid
* @return 1 if success , or else -1
*/
extern int fetion_contact_set_displayname(User* user , const char* userid , const char* name);
/**
* move the user specified by userid to the new user group specified by the buddylist
* @param user Global User object
* @return 1 if success , orelse -1
*/
extern int fetion_contact_move_to_group(User *user, const char *userid, int old_bl, int new_bl);
/**
* copy the buddy specified by userid to the new group specified by the buddylist
* @param user Global User object
* @return 1 if success , orelse -1
*/
extern int fetion_contact_copy_to_group(User *user, const char *userid, int buddylist);
/**
* remove the buddy specified by userid from the group specified by the buddylist
* @param user Global User object
* @return 1 if success , orelse -1
*/
extern int fetion_contact_remove_from_group(User *user, const char *userid, int buddylist);
/**
* delete a user specified by userid from your contact
* @param user Global User object
* @param userid To specify the user to be deleted
*/
extern int fetion_contact_delete_buddy(User* user , const char* userid);
/**
* send an Add-Buddy request to sipc server
* @param user Global User object
* @param no Fetion number is 'notype' is FETION_NO , mobile number if 'notype' it MOBILE_NO
* @param notype To specify the number type
* @param buddylist To specify which user group the new user will be located
* @param localname To specify the local name of the new user
* @param desc To specify your display name that will be contained in the request sent to the new uesr
* @param phraseid To specify which Add-Buddy phrase to use
* @return the contact contains the basic information of the new uesr
*/
extern Contact* fetion_contact_add_buddy(User* user , const char* no
, NumberType notype , int buddylist
, const char* localname , const char* desc
, int phraseid , int* statuscode);
extern Contact* fetion_contact_handle_contact_request(User* user, const char* sipuri
, const char* userid , const char* localname
, int buddylist , int result);
/**
* load contact list from local database
* @param gcount to be filled with count of group stored in local database
* @param bcount to be filled with count of buddy count stored in local database
*/
extern void fetion_contact_load(User *user, int *gcount, int *bcount);
/**
* save contact list into local database
*/
extern void fetion_contact_save(User *user);
/**
* update a specified contact information in the database
*/
extern void fetion_contact_update(User *user, Contact *contact);
/**
* delete buddy information with specified userid from local database
*/
extern int fetion_contact_del_localbuddy(User *user, const char *userid);
/**
* delete group information with specified groupid from local database;
*/
extern int fetion_contact_del_localgroup(User *user, const char *groupid);
extern int parse_add_buddy_verification(User* user , const char* str);
#endif
|