Categories: Open C | How To | Code Examples | Networking | TCP/IP
This page was last modified 18:26, 2 October 2007.
Start new Socket Sub-connection to Access Point
From Forum Nokia Wiki
SIOCIFSTART and SIOCIFACTIVESTART are actual ioctl( ) calls which would start a connection or subconnection. All the socket communication calls such as connect(), read(), write(), send(), receive(), sendto(), and recvfrom() should come after calling SIOCIFSTART and SIOCIFACTIVESTART. Calls such as getsockopt(), and getsockname() that do not require any connection do not have any dependency on SIOCIFSTART and SIOCIFACTIVESTART.
The code to start a new socket connection can be seen here.
The following code shows how to start a new subconnection using an existing connection.
void NewSubconnection(char *ifname) { ifreq ifr; int sockfd1, sockfd2; // Name of the interface strcpy(ifr.ifr_name, ifname); sockfd1 = socket(AF_INET,SOCK_DGRAM,IPPROTO_UDP); ioctl(sockfd1,SIOCSIFNAME, &ifr); ioctl(sockfd1, SIOCIFSTART , &ifr); sockfd2 = socket(AF_INET,SOCK_DGRAM,IPPROTO_UDP); ioctl(sockfd2,SIOCSIFNAME, &ifr); //Start subconnection using a connection created earlier //using SIOCSIFNAME ioctl(sockfd2, SIOCIFACTIVESTART , &ifr); //recvfrom() and sendto() operations on socket sockfd2 and sockfd1 ioctl(sockfd2, SIOCIFSTOP, &ifr); // Stop the connection ioctl(sockfd1, SIOCIFSTOP, &ifr); // Stop the connection close(sockfd2); close(sockfd1); }
Links
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to set default access point for sending email using RSendAs? | xhsoldier | General Symbian C++ | 4 | 2006-08-17 10:05 |
| how to determine phone's IP address? | xchip | Python | 12 | 2008-04-20 15:24 |
| Socket Example don't shows IAP dialog | deepbeat | General Symbian C++ | 2 | 2006-04-26 16:03 |
| HTTP Application - Series 60 C++ - Connection using WAP Access Point Hangs/Times-Out? | symbian_ravi | Symbian Networking & Messaging | 10 | 2006-12-22 12:33 |
| Set Preferred Access Point | Quarrybaby | Mobile Java General | 0 | 2006-11-05 11:36 |
