0
votes
0answers
17 views
Multiple SSL Certificates Running on OSX 10.6 [closed]
I have been running into walls with this for a while.
I am attempting to setup multiple IP addresses on Snow Leopard so that I can develop with SSL certificates. I am running XAMP …
1
vote
3answers
80 views
Obtain MAC Address from Devices using Python
I'm looking for a way (with python) to obtain the layer II address from a device on my local network. Layer III addresses are known.
The goal is to build a script that will poll …
0
votes
3answers
94 views
How do I create valid IP ranges given an IP address and Subnet mask in Perl?
How do I create valid IP ranges given an IP address and Subnet mask in Perl? I understand the concept of generating the IP ranges but need help writing in Perl. For example, if I A …
2
votes
4answers
49 views
where is class E ip addresses?
I am reading Richard Stevens' TCP/IP illustrated Vol1.He said class E ip addresses are reserved for future use.Considering he wrote the book at 1994,now is the future.So where is t …
0
votes
5answers
100 views
which is the better way to get the ip…
What is the better way of getting the IP address in PHP:
getenv('REMOTE_ADDR');
or,
$_SERVER['REMOTE_ADDR'];
please tell me the difference, if any, between the two.
0
votes
3answers
65 views
what ip address does accept return
see the following code:
accept(sockfd, (struct sockaddr*)&cliaddr, &slen);
cout << inet_ntop(AF_INET, cliaddr.sin_addr, ipv4addr, 100);
my client connects from loc …
0
votes
1answer
41 views
How can I send data to multiple IPs in VB.NET with TCP/IP sockets?
I have an array of IP addresses, and I want to send the same data to all of them. I could just send the loop code that sends data but I think there's a better way of doing this.
I …
4
votes
3answers
136 views
What is the most accurate way to retrieve a user’s correct IP address in PHP?
I know there are a plethora of $_SERVER variables headers available for IP address retrieval. I was wondering if there is a general consensus as to how to most accurately retrieve …
0
votes
5answers
120 views
How get Visitors IP Address and Country ID in website
How write code in ASP to get website visitors IP address and Country ID ?
Plz help me,
Alex
0
votes
0answers
17 views
finding the IP address inAdobe AIR
how to know the P address of the system in which the AIR application is currently running? or
how to restrict the usage of AIR application for a particular country?
1
vote
7answers
476 views
how to convert IP address from char to int
Hi!
I have an IP address in char type Like char ip = "192.123.34.134" I want increment the last value (134). Does anyone how should i do it? I think, i should convert it to an in …
1
vote
2answers
73 views
Will blocking IP-addresses of spammers also block visitors?
My website's comment function is being constantly bombarded with spam posts from these two IP addresses:
94.102.63.11
83.233.30.42
I am currently blocking them at the text leve …
2
votes
2answers
236 views
How to check if an IP address is within a particular subnet
I have a subnet in the format 10.132.0.0/20 and an IP address from the ASP.Net request object.
Is there a .NET framework function to check to see if the IP address is within the g …
1
vote
2answers
473 views
Objective-C - Determining IP address of iPod touch programmatically
I'm programming in objective-C for several iPod devices and I was wondering about something. I'm developing an application that utilizes the server-client model and I'm using the U …
3
votes
5answers
396 views
How to store IP address list in C# List to make it searchable for subnets too?
Hello,
how should I correctly store IP address list with addresses which are subnets to make it searchable?
There are two examples:
I have IP address 1.2.3.4 and in my C# List …
