0
votes
3answers
62 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
18 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
90 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
80 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
5answers
67 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
1
vote
2answers
61 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 …
1
vote
7answers
372 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 …
2
votes
2answers
187 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 …
0
votes
4answers
66 views
Is there any possible way to find the name of the country using IP with scripting language PHP ?
Hi all
Is there any possible way to find the name of the country using IP with scripting language PHP ?
Thanks in advance
Fero
0
votes
1answer
36 views
Restricting access to a website by IP address range / domain
Hi,
I would like advice on the best way to restrict access to a weba pplication (using .net 2.0 and II6) based on the clients IP address. The two ways I am considering:
1) Throug …
3
votes
5answers
327 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 …
2
votes
5answers
313 views
Datatype for storing ip address in SQL Server
What datatype should i choose for storing an Ip Address in a SQL Server?
By selecting the right datatype would it be easy enough to filter by IP address then?
1
vote
2answers
107 views
Subversion on laptop and moving between internal/external network
I have a subversion server on my local network and access it using the 192.168.1.x address. The problem is that when I leave my house and need to update svn on my laptop, I now ha …
0
votes
1answer
39 views
Optimal Configuration for Disgusing Identity of Scraping
I'm running a bunch of scripts that are scraping data from a website. For reasons I won't bore you with, I can't run them all off the same host--instead I need to set up six diffe …
0
votes
1answer
81 views
Django Forms clean() method - need IP address of client
I am overriding the clean() method on a Django form. I want to have access to the IP address of the client (assuming this is a bound form). If I had a reference to the request obje …
