Programming associated with creating and managing networks as well as adding network connectivity to a (set of) programs.
0
votes
1answer
13 views
Packetizing an multimedia file (video or audio file)
for an android project I must load a multimedia file and then packetize it. I don't know how can I do this work. Please give me an example to how do this?
thanks
0
votes
0answers
8 views
Select the outgoing port in ksoap2
I'm using the ksoap2 library for talking to a web-service. Is it possible to select the port that I use for the outbound http(s) traffic either through the library or another way? I'm using android so ...
0
votes
1answer
23 views
Select outgoing TCP/IP port on Android
Is there way select the outgoing port that I use when connecting, for example, to a web-service? I'll be working on a Android device so ideally something Java based would be easiest.
1
vote
0answers
25 views
Table for Longest prefix matching
I want to build a kernel module which will maintain his own table for carrying out longest prefix match. For this purpose, I am trying to use linux's "include/net/ip6_fib.h". Is it possible to meet ...
2
votes
1answer
25 views
Boost asio “network connection was aborted by local system” on async_read_some
I'm having an issue creating a really simple TCP based server-client connection using boost asio. When I get a connection from a client on my server and get into the method that handles the ...
0
votes
0answers
9 views
webdav offline client (like dropbox / google drive)
I search client for WebDav serve like Google Drive. At this moment I use NetDrive - it's verry good, but main coin - NetDrive cant sync files with local storage, what do Google Drive.
By secure reason ...
0
votes
0answers
9 views
PHP Nusoap Class: SOAP call does not return the response
I have used Nusoap class for SOAP call integration in PHP application. There won't be a WSDL file in server. So I had to call a methed using $client->call. It is working good. But sometimes one ...
0
votes
2answers
55 views
Improving Socket Performance in Windows
I am new to Network Communication methods. I just developed a very simple server/client connection using the procedure described in the Microsoft website:
...
0
votes
2answers
32 views
inet_pton with all zero ip address
I am using inet_pton to verify if the input IP address is valid and is not all zeros ( 0.0.0.0 or 00.00.0.0).
inet_pton(int af, const char *src, void *dst)
If the input ip (src) address is 0.0.0.0 ...
1
vote
1answer
25 views
Android: How to detect if a device is WIFi or WiFi+Cellular
Is there a way to check if the user is using a device (this applies primarily to tablets) with Cellular conection?. That is, the smartphones comes with built-in Wi‑Fi and Cellular (generally), but ...
0
votes
1answer
16 views
iOS programatically setting up device in AP mode
During the application lifecycle, how can device be put into Access Point mode?
Like turning on the Personal Hotspot.
And is it possible to assign SSID to that network during runtime?
0
votes
1answer
12 views
How to detect NAT(Network Address Translation) or PAT(Port Address Translation) is enabled
I need help to detect NAT or PAT is enabled on network or not. Is there any way in Windows SDK or .NET to detect this?
Thanks,
Omkar
0
votes
2answers
41 views
How can a web server handle multiple user's incoming requests at a time on a single port (80)?
How does a web server handle multiple incoming requests at the same time on a single port(80)?
Example :
At the same time 300k users want to see an image from www.abcdef.com which assigned IP ...
0
votes
1answer
12 views
Running python code with openflow simulator
I am using mininet as openflow network simulator. In my experiment I want to bring down a link between two switches in the codes and bring it up later in the mininet console.
Here is what I did:
...
0
votes
1answer
19 views
Throw Socket Timeout for recv
So I have been looking, here: How to set timeout on python's socket recv method?
And others, but I cant seem to get it working like I want. I am writing a traceroute script and want to the ...