Questions tagged [system-configuration]

48 questions
10
votes
2 answers

Getting OSX Connected Wi-Fi Network Name

I need to get the name of the currently connected Wi-Fi SSID on OSX. I've messed with the SystemConfiguration framework, I feel like it is there (as I am able to get the name of the network locaiton) but I am not really finding a way of getting the…
EduAlm
  • 813
  • 3
  • 11
  • 27
10
votes
2 answers

How to fake network connection type changes in iOS simulator?

I would like to test my iOS application with all the network conditions possible, including quality of the connection (offline, poor, good) and carrier (WiFi, 3G). For the former, others have already suggested using the Network Link Conditioner,…
Lvsti
  • 1,525
  • 15
  • 15
7
votes
1 answer

getpagesize() vs. sysconf(_SC_PAGESIZE)

Both in general and with regard to cross-platform support, is one function -- getpagesize() vs. sysconf(_SC_PAGESIZE) -- more reliable than the other?
IntellectualKitty
  • 523
  • 1
  • 6
  • 12
5
votes
2 answers

How to add WYSIWYG Editor in Magento system configuration?

I want to add WYSIWYG editor in Magento system configuration. And also get the value from the that is there option to do this. Cheers.
MeenakshiSundaram R
  • 2,837
  • 3
  • 29
  • 41
4
votes
3 answers

Replacement for kicker.bundle in SystemConfiguration in OS X Leopard

I'm trying to find the replacement for kicker.bundle that was found in /System/Library/SystemConfiguration in OS X pre 10.5 (Leopard). I can't seem to find any sort of official documentation on the matter. Does anyone know what the replacement…
kuv
  • 73
  • 6
4
votes
1 answer

What does zero sockaddr_in mean in SCNetworkReachabilityCreateWithAddress?

tonymillion 's Reachability has +(Reachability *)reachabilityForInternetConnection { struct sockaddr_in zeroAddress; bzero(&zeroAddress, sizeof(zeroAddress)); zeroAddress.sin_len = sizeof(zeroAddress); zeroAddress.sin_family =…
onmyway133
  • 45,645
  • 31
  • 257
  • 263
3
votes
2 answers

How do I get current network location name?

In system network preference there are some location names.How to get the current or active network location name and list of all network locations? I guess SystemConfiguration.framework supports this but i didn't get exactly which API to use.Thanks…
Raviprakash
  • 2,410
  • 6
  • 34
  • 56
3
votes
2 answers

Getting custom email template in system configuration magento?

I need to get custom email template in admin system configuration. system.xml This is my email template field code. 1
MeenakshiSundaram R
  • 2,837
  • 3
  • 29
  • 41
2
votes
3 answers

Portable access to sysconfdir via config.h

I'd like my application to have portable access to the configuration files installed during make install (dist_sysconf_DATA). Is it possible to access $(sysconfdir) via config.h?
ben lemasurier
  • 2,582
  • 4
  • 22
  • 37
2
votes
2 answers

Add Customized Machine Key to Asp.Net Core 2.2

I have 2 application one in MVC 5 and another on asp.net core 2.2 I have added Machine Key On MVC 5 under system.web like below
bhagirathi
  • 521
  • 6
  • 23
2
votes
1 answer

Uninstall python 2.6 without yum

I accidentally downloaded python2.6.6 on my centos Virtual Machine from python.org's official download package and compiled it to source. Now in my /usr/local/bin I have a python2.6 shell available and now if I use which python it will give me the…
paradox
  • 258
  • 4
  • 19
2
votes
1 answer

How can we get network service order programatically in OSX project

Im my code i am trying to use SCNetworkSetGetServiceOrder to get network service order. like below Ethernet FireWire Wi-Fi Bluetooth PAN Thunderbolt Bridge i am using below code -(void)getserviceorder { CFArrayRef …
2
votes
0 answers

Change Network Interface Without Authentication PopUp in MAC Application

I am working on MAC Application in which I have to create a VPN Connection through my application and which I have done successfully with the Help of EBAS Example code from Apple. Now when user want to connect to VPN, I need to modify the Network…
2
votes
1 answer

How to correlate (a changed-key-string passed to SCDynamicStoreCreate()'s callback) to a network device?

My C/C++ program uses MacOS/X's SystemConfiguration function SCDynamicsStoreCreate() and friends to detect when the Mac's network configuration has changed, more or less as shown in the example code Apple provides here. This works pretty well; in…
Jeremy Friesner
  • 70,199
  • 15
  • 131
  • 234
1
vote
1 answer

Launch Settings->Sounds

Launch Settings->Sounds I need to launch the view of Sounds Settings in iPhone device.. Just like we get the Mail composer and Contact View using API's , can we get the Sounds Settings view? Thanks in advance of any suggestion and help.
Manmay
  • 539
  • 2
  • 12
  • 28
1
2 3 4