// // HeatViewController.m // Heat // // Created by Simon Urbanek on 2/7/10. // Copyright __MyCompanyName__ 2010. All rights reserved. // #import "HeatViewController.h" static HeatViewController *ctrl; static void nr_callback(SCNetworkReachabilityRef target, SCNetworkReachabilityFlags flags, void *info) { NSLog(@"reach %@: %d\n", target, flags); ctrl->info.text = [ctrl->info.text stringByAppendingFormat: @"[%s:flags=0x%x]\n", (target == ctrl->r_fino) ? "fino" : "server", flags]; } @implementation HeatViewController /* // The designated initializer. Override to perform setup that is required before the view is loaded. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) { // Custom initialization } return self; } */ /* // Implement loadView to create a view hierarchy programmatically, without using a nib. - (void)loadView { } */ // Implement viewDidLoad to do additional setup after loading the view, typically from a nib. - (void)viewDidLoad { [super viewDidLoad]; ctrl = self; r_fino = SCNetworkReachabilityCreateWithName(NULL, "fino.local"); SCNetworkReachabilitySetCallback(r_fino, nr_callback, NULL); r_srv = SCNetworkReachabilityCreateWithName(NULL, "urbanek.info"); SCNetworkReachabilitySetCallback(r_srv, nr_callback, NULL); SCNetworkReachabilityScheduleWithRunLoop(r_fino, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode); SCNetworkReachabilityScheduleWithRunLoop(r_srv, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode); } /* // Override to allow orientations other than the default portrait orientation. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return (interfaceOrientation == UIInterfaceOrientationPortrait); } */ - (void)didReceiveMemoryWarning { // Releases the view if it doesn't have a superview. [super didReceiveMemoryWarning]; // Release any cached data, images, etc that aren't in use. } - (void)viewDidUnload { // Release any retained subviews of the main view. // e.g. self.myOutlet = nil; } - (void)dealloc { [super dealloc]; } @end