Namespaces
Variants
Actions

Socket Connection to an IP Address

Jump to: navigation, search
Article Metadata

Article
Created: spark55 (11 Sep 2007)
Last edited: hamishwillee (03 Feb 2012)


Following is the Open C code to connect to an IP Address given an Access Point name, IP Address and the port. This code uses ioctl to do the job. Similarly, we can do it even without using ioctl

int ConnectToIpAdress(char *apname, char *ipaddr , int port)
{
ifreq ifr;
int sockfd;
struct sockaddr_in destAddr, selfAddr;
 
// Name of the interface
strcpy(ifr.ifr_name, apname);
 
sockfd = socket(AF_INET,SOCK_DGRAM,IPPROTO_UDP);
ioctl(sockfd,SIOCSIFNAME, &ifr);
ioctl(sockfd, SIOCIFSTART , &ifr);
 
selfAddr.sin_family = AF_INET;
selfAddr.sin_addr.s_addr = INADDR_ANY;
selfAddr.sin_port = htons(port);
 
//Binding
bind(sockfd,(struct sockaddr*)&selfAddr, sizeof(selfAddr));
 
destAddr.sin_family = AF_INET;
destAddr.sin_addr.s_addr = inet_addr( ipaddr );
destAddr.sin_port = htons(port);
connect(sockfd, (struct sockaddr*)&destAddr, sizeof(destAddr));
 
ioctl(sockfd, SIOCIFSTOP, &ifr);
close(sockfd);
return;
}


Links

Reading AP(Access Point) Table

Start new Socket Connection to Access Point

Start new Socket Sub-connection to Access Point

This page was last modified on 3 February 2012, at 08:31.
132 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved