Join Now
Quality Rating:
  • Currently 0.0 / 5
(0.0 / 5 - 0 votes cast)
Expertise Level:
  • Currently 0.0 / 5
(0.0 / 5 - 0 votes cast)

This page was last modified 14:19, 29 May 2008.

Start new Socket Connection to Access Point

From Forum Nokia Wiki

Once you get the available access points list, the following code shows how to start a new connection using available access points.

void ConnectToAP(char *ifname)
{
	ifreq ifr;
	int sockfd;
 
	// Name of the interface
	strcpy(ifr.ifr_name, ifname);
	
	sockfd = socket(AF_INET,SOCK_DGRAM,IPPROTO_UDP);	
	ioctl(sockfd,SIOCSIFNAME, &ifr);
	ioctl(sockfd, SIOCIFSTART , &ifr);	
	
 
	// recvfrom() and sendto() operations on socket sockfd
 
	ioctl(sockfd, SIOCIFSTOP, &ifr);
 
	close(sockfd);
	return ret;
}

In the above code,SIOCSIFNAME API is used to select the access point.


Links

 
Powered by MediaWiki
     
     RDF Facets:
     
     
     qfnZtypeQUqfnTypeZCommunityContentQ
     qfnZtypeQUqfnTypeZWebpageQ
     qfnZtypeQUqfnTypeZWikiContentQ
     qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX