1
vote
0answers
11 views
Virtual Network Connection
I can see that lot's of programs like openvpn and Teamviewer for their VPN Connection creat a virtual network connection on windows. I want to create one for myself for testing purposes.
Is it …
0
votes
2answers
28 views
Is it possible to boot a “shut down” system over a network through an application(code) on the network?
I was just wondering if by any means an application can boot up a system that has been previously shutdown within the same network.
This taught came to my mind after a friend just told me how his …
1
vote
1answer
28 views
Selection between ACE & Boost for learning
Hi everyone, I am an intermediate c++ programmer and done some work using ACE, now I want to learn one of those Libraries thoroughly to progress in to my career. That why I need your kind help to make …
0
votes
0answers
7 views
POSTing to the web in Clarion
I'm developing a RESTful API for a client. The problem is, he's using a rather obscure language called Clarion. It's proprietary and closed, and the docs are not freely available online.
Whenever we …
0
votes
1answer
25 views
Using recvfrom() with raw sockets : general doubt
I have created a raw socket which takes all IPv4 packets from data link layer (with data link layer header removed). And for reading the packets I use recvfrom.
My doubt is:
Suppose due to some …
0
votes
1answer
9 views
Finding the type of data in IPv4 packet
Excluding options field in IPv4 header, after 20 bytes of header, data follows. That data may be TCP packet, or UDP etc.
Now given a IPv4 packet (with header and data), How to find out which type of …
1
vote
3answers
80 views
Check connection open or closed ?(in c in Linux)
In socket programming in Linux I need to write data in socket but I don't know socket is open or close . how to I know that socket is open and close without read ?
printf("befor read%d\n", n);
…
0
votes
2answers
54 views
Accessing data link layer packets
I want to create a socket for accessing IPv4 packets from data link layer. From unix network programming V1,
socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP))
1)I am implementing a dhcp client, is …
0
votes
3answers
93 views
Implementing DHCP client
On unix using C, my client is listening on port 68 with superuser mode. After sending DHCP discover message, when I try to receive, it blocks in recvfrom means there is no message received or is it …
0
votes
1answer
32 views
Why DHCP client listens on port 68?
If suppose client does not listen on 68 port,when DHCP server receives the request, it can send it to the address from where it received request (with ephemeral port chosen by client at time of …
4
votes
3answers
122 views
what is the difference between read() and recv() , and between send() and write() ?
what is the difference between read() and recv() , and between send() and write() in socket programming ? performance and speed .
0
votes
1answer
14 views
Could somebody help me in spotting an error regarding uploading an image from iPhone to server here?
I am strictly following the answers from http://stackoverflow.com/questions/125306/how-can-i-upload-a-photo-to-a-server-with-the-iphone.
This part below is the part that get called when my button is …
1
vote
2answers
34 views
Descriptor passing with unix domain sockets
When we want to pass a descriptor from child to process, UNP V1(Unix network programming V1) specifies a complex procedure of doing this, first to create msghdr struct and then something, etc.
Why …
0
votes
3answers
33 views
DHCP : Cant receive reply from server
I am working on Ubuntu 9.04. I am running this on VMware workstation. Here is my C code:
int sockfd,cnt,addrlen;
const int on = 1;
struct sockaddr_in servaddr,cliaddr;
char reply[512];
sockfd = …
0
votes
2answers
29 views
route a custom url to a web-application
Hi,
I have a Vista Home PC with computer-name say *office_pc1* and with IP say 192.168.11.40. I have a web-application, in that pc, which can be successfully accessed via the IP itself.
Now, my …
