Click here to Skip to main content
Licence CPOL
First Posted 3 Oct 2006
Views 38,884
Bookmarked 28 times

Network Connection Manager - Select Network Connections from many Networks Available

By | 3 Oct 2006 | Article
How to select network connections from many Networks available like BlueTooth, Active Sync, 3G, Wireless Lan

Introduction

The primary purpose of the article is to centralize and automate the establishment and management of the network connections on a device. Applications on the device use the Connection Manager to establish or schedule a network connection. The Connection Manager handles the details of the connection; the application simply informs the Connection Manager of the network type to use for the connection (the Internet, for example).

When an application requests a network connection, the Connection Manager first retrieves all of the possible connections from a set of Connection Service Providers (CSPs). The Connection Manager then associates a set of costs with these routes and ultimately determines the optimal connection based on cost, latency, bandwidth, and other factors. Finally, the Connection Manager queues the requested connection and uses the CSPs to establish the connection at the appropriate time.

Connection Manager takes care of everything, i.e., all connections are made to networks:

  • "The Internet"
  • "My Corporate Network"

ADD Header file

 #include <objbase.h> 
 #include <initguid.h> 
 #include <connmgr.h>

In Editor, go to Project>Settings:

Go to Link tab

Object/Library modules: cellcore.lib

Adding Lib

Code

Make the connection

CONNMGR_CONNECTIONINFO connInfo;
HANDLE hConnection;
connInfo.cbSize = sizeof(connInfo);
connInfo.dwParams = CONNMGR_PARAM_GUIDDESTNET;
connInfo.dwFlags = 0;
connInfo.dwPriority = CONNMGR_PRIORITY_USERINTERACTIVE;
connInfo.bExclusive = false;
connInfo.bDisabled = false;
connInfo.guidDestNet = IID_DestNetInternet;
connInfo.hWnd = NULL;
//connInfo.uMsg = WM_APP_CONNMGR;
connInfo.lParam = (LPARAM)0;
// Make the connection
ConnMgrEstablishConnection(&connInfo , &hConnection);

Close the connection

ConnMgrReleaseConnection(hConnection, 1);

History

  • 3rd October, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Pradeep Kothari

Systems Engineer

India India

Member

System Programmer in InfoPro Corporation India .
Currently in the Development Team of world's one of the first Mobile Learning Management System.
Can be contacted at pradeep.kothari@yahoo.co.in

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralSource code Pinmemberimzadi13:22 5 Jan '11  
QuestionHow To Connect 3G network Pinmemberyoucan.zeng3:51 19 Aug '09  
Questionsource code PinmemberGuy in London23:15 21 Jan '09  
GeneralVB.NET Sample Pinmemberjorgedf77715:24 23 Sep '08  
QuestionCan you send me your source code Pinmemberalert091920:02 15 Jun '08  
GeneralRespect... PinmemberBateman6:55 12 Dec '06  
QuestionRe: Respect... PinmemberPradeep Kothari2:35 27 May '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 4 Oct 2006
Article Copyright 2006 by Pradeep Kothari
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid