Tagged Questions
The inet tag has no wiki summary.
5
votes
3answers
266 views
Detecting HTTP close using inet
In my mochiweb application, I am using a long held HTTP request. I wanted to detect when the connection with the user died, and I figured out how to do that by doing:
Socket = Req:get(socket),
...
2
votes
1answer
296 views
Perl IO::Socket::INET confusing “Invalid argument” error
Consider the following snippet of a Perl script:
use IO::Socket;
# ...
my $sock = IO::Socket::INET->new(
PeerAddr => $host, # e.g. "google.com"
PeerPort => $port, # e.g. 80
Proto ...
2
votes
1answer
2k views
Perl: How to get IO::Socket::INET timeout after X seconds?
I'm trying to connect to some host, using invalid port, and i want to get timeout after X seconds. How to do that ?
My code:
$sock = new IO::Socket::INET(
PeerAddr => $_[0],
...
1
vote
0answers
51 views
How to change the useragent of Inet Control?
I tried to set the usergent using
Inet1.Execute , "GET", "Referer: yahoo.com" & vbCrLf & "Content-Type: application/x-www-form-urlencoded" & vbCrLf & "Accept-Language: en-us" & ...
1
vote
1answer
157 views
Convert IP address to dot syntax from unsigned long integer in iOS
I'm retrieving an IP address as an unsigned long integer via JSON. I'm trying to then convert this back to human readable form, ie xxx.xxx.xxx.xxx.
Example of what I receive in JSON:
"ip": 704210705
...
1
vote
3answers
249 views
How do I use the inet type with Python and postgresql?
I am writing a python3 program that uses a postgresql database, I am using py-postgresql: http://python.projects.postgresql.org/ as the database driver.
One table stores IP addresses using the inet ...
1
vote
5answers
590 views
What does InetAddress.isSiteLocalAddress() actually mean?
Here is some code to determine the local host name that is supposed to work on a multi-homed box:
/**
* Work out the first local host name by iterating the network interfaces
*
* @return
* ...
1
vote
1answer
570 views
get data from the internet
I need to get the data from a secure URL (https) with a userid and password. How can I implement that.
I am able to access the data from a normal URL using the below command
li_rc = ...
0
votes
1answer
16 views
inet_pton inet_ntop roll your own
Our code has to run on both SLES9 (old) and an even older version HPUX.
We're implementing IPv6 now, but inet_pton and inet_ntop do not exist on our HPUX, so have to roll our own.
S/W is in C++. If ...
0
votes
2answers
34 views
How to reset inet(dsl) connection via console in Windows XP?
all question in the title. All I want is to refresh ip only.
0
votes
1answer
53 views
Is INET socket family supported in JAVA?
I want to build a user application which will interact with a kernel part over INET socket family. Is INET socket family supported in JAVA?
0
votes
0answers
50 views
Question About i-net PDFC API
I just want to ask you some Questions About *i-net PDFC * API
https://www.inetsoftware.de/other-products/pdf-content-comparer
this api compare between to Pdf
1- can i ignore some keyword from ...
0
votes
1answer
67 views
Weird behavior of inet_ntoa
I was playing with libpcap and found a strange thing.
One part of the output is:
"From: src_addr, To: dst_addr"
If I print with one statement, i.e.
printf("From: %s, To: %s\n", ...
0
votes
1answer
190 views
Android pinging an web service address
I want to implement a feature that will ping an address of web service and if it returns true then the application will run through web services otherwise it will use the database of the device ...
0
votes
1answer
223 views
linux bash inet_ntoa inet_aton
I should be blind as I could not find these commands available in the ubuntu and debian's distribution, neither the package containing them.
Shall I code and compile them in C by myself (or write or ...
0
votes
0answers
92 views
How to perform IP-spoofing in INET?
I'm using the OMNET++ IDE, with INET framework to simulate an OSPFv2 network. I'm attempring to send a LSA packet on behalf of another OSPF router.
I can't figure out how to properly change the data ...
0
votes
2answers
156 views
How can I specify which port to use in Perl's IO::Socket::INET?
I am using IO::Socket::INET to create inter-process communication in my program. I need to use a specific port number in my TCP client. I was following the example in Perl doc, but it doesn't work. ...
0
votes
2answers
616 views
Inet Socket and Socket?
Can anybody tell me the difference between a INET Socket and any other socket?
Is there a C# library that will allow one to work with INET Sockets?
I've attempted to find what it is, but I haven't ...
0
votes
2answers
674 views
VB6 - Inet hangs - multiple form instances
Here is my app status:
Purpose - download multiple list files from internet
Approach - created a simple "download form". After a while, I just needed more forms because I had more than one list of ...