db5c4575e546ee08b49236df173692e063327cbd
[cascardo/sgp.git] / src / friend.c
1 /*
2  *  Copyright (C) 2013  Thadeu Lima de Souza Cascardo <cascardo@cascardo.info>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <sgp/friend.h>
20 #include <sgp/channel.h>
21 #include <stdlib.h>
22
23 struct sgp_friend {
24         struct sgp_channel *channel;
25 };
26
27 struct sgp_friend * sgp_friend_new(char *alias)
28 {
29         struct sgp_friend *friend;
30         friend = malloc(sizeof(*friend));
31         friend->channel = NULL;
32         return friend;
33 }
34
35 /*
36  * Get the channel used for communication with a friend.
37  */
38 struct sgp_channel * sgp_friend_get_channel(struct sgp_friend *friend)
39 {
40         /*
41          * TODO: A friend may have multiple channels for contact. We
42          * should either implement this at the core (at sgp_send, for
43          * example), or create a channel that encapsulates that.
44          */
45         return friend->channel;
46 }