summaryrefslogtreecommitdiffstats
path: root/gisi/socket.c
diff options
context:
space:
mode:
authorRĂ©mi Denis-Courmont <remi.denis-courmont@nokia.com>2009-08-19 15:55:47 +0300
committerAki Niemi <aki.niemi@nokia.com>2009-08-19 17:07:15 +0300
commitb2ee53a99f897f51ae6cbb63dff78ac381bd7ec8 (patch)
tree68c9d0addbfa20ccd2b5a256271d5b0ff1102ab6 /gisi/socket.c
parent21588cc5f870fc94697de8d48b0670543b76b440 (diff)
downloadofono-b2ee53a99f897f51ae6cbb63dff78ac381bd7ec8.tar.bz2
gisi: low-level modem scoping for sockets
Diffstat (limited to 'gisi/socket.c')
-rw-r--r--gisi/socket.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/gisi/socket.c b/gisi/socket.c
index efa4c889..bca89853 100644
--- a/gisi/socket.c
+++ b/gisi/socket.c
@@ -30,35 +30,44 @@
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <unistd.h>
+#include <net/if.h>
#include <fcntl.h>
+#include "modem.h"
#include "phonet.h"
#include <glib.h>
#include "socket.h"
-GIOChannel *phonet_new(uint8_t resource)
+GIOChannel *phonet_new(GIsiModem *modem, uint8_t resource)
{
GIOChannel *channel;
struct sockaddr_pn addr = {
.spn_family = AF_PHONET,
.spn_resource = resource,
};
+ unsigned ifi = g_isi_modem_index(modem);
+ char buf[IF_NAMESIZE];
int fd = socket(PF_PHONET, SOCK_DGRAM, 0);
if (fd == -1)
return NULL;
fcntl(fd, F_SETFD, FD_CLOEXEC);
/* Use blocking mode on purpose. */
- if (bind(fd, (struct sockaddr *)&addr, sizeof(addr))) {
- close(fd);
- return NULL;
- }
+
+ if (if_indextoname(ifi, buf) == NULL ||
+ setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, buf, IF_NAMESIZE))
+ goto error;
+ if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)))
+ goto error;
channel = g_io_channel_unix_new(fd);
g_io_channel_set_close_on_unref(channel, TRUE);
g_io_channel_set_encoding(channel, NULL, NULL);
g_io_channel_set_buffered(channel, FALSE);
return channel;
+error:
+ close(fd);
+ return NULL;
}
size_t phonet_peek_length(GIOChannel *channel)