Http Server to WMP File Connections
Wed, 10 Sep 2008 02:47:00 -0700 (PDT)
Hi,
I've written a basic http server that all works perfectly and sends
html pages and a sample mp3 file. IE and Firefox accept the html
pages and display them correctly. Both will accept the mp3 file and
download it then pass it to WMP which plays it correctly.
However when I use the direct Http://[addre ...
|
Using Winpcap to inject UDP packets to the Internet
Tue, 9 Sep 2008 16:35:22 +0200
Hi all,
I'd like to inject to the Internet UDP packets to another PC but with no
traces of my address. That it to say that the source address would be some
other IP address.
Is that possible by means of WinPcap?
Is it possible with some other library?
If positive, is there some reference to a C++ code?
Re ...
|
Manipulating HTTP communication
Sun, 7 Sep 2008 12:46:07 -0700 (PDT)
Hi,
I'm looking for a way to manipulate (i.e. modify the packets of) http
communication from a certain software to a certain remote address. I'm
not a network programmer, and this is merely some not-so-serious thing
I'm trying to do. I'd love to hear some suggestions as to how can I
achieve that. I could thin ...
|
IOCP threads and WSASend synchronization questions
Fri, 5 Sep 2008 15:55:00 -0700
Hi,
Iâ??m writing a socket server using IOCP and canâ??t figure out how to
synchronize sends without locking the send code. This is the scenario.
All sends calls made on socket objects push the data and the socket onto a
send queue and then post an IOCP event.
The IOCP event is picked up by one of the w ...
|
netuserchangepassword problem with windows server 2008
Fri, 5 Sep 2008 07:14:02 -0700
I am trying to debug a problem with an existing application that uses
NetUserChangePassword() to change a domain users password. This is an
existing application that has been working for several years. A problem was
reported on Windows Server 2008. The problem appears to be that the
NetUserChangePassword() c ...
|
How do I get a list of telnet handshake option values?
Thu, 4 Sep 2008 11:39:37 -0700 (PDT)
I'm working on a telnet connection with a new server. I just sent a
255,253,152 which I've never run into before. I know how the telnet
protocol works and all, but looking through the RFC's there doesn't
seem to be any kind of index that would allow me to easily look up
specifically what 152 *is*. Anyone have an ...
|
recv never returns
Thu, 04 Sep 2008 13:28:45 +0300
I can't figure why recv never return in below code.
The code is snipped from a small sample indetended to check if email is available
at a pop3 server.
buf is "char buf[8192]" and size=8192
...
if (send(connects,buf,strlen(buf),0) <= 0) //connect is valid
{
closesocket(connects);
return 0;
...
|
|
|
PfCreateInterface and XP x64
Wed, 3 Sep 2008 10:38:22 -0700 (PDT)
I am currently using the IPHelper Pf* APIs to perform packet filtering
on Win2000 and XP successfully. Unfortunately, the same code is
failing on XP x64 (which, it is my understanding, is basically
Server2003 x64).
In particular, the PfCreateInterface method is failing with:
ERROR_INVALID_USER_BUFFER (178 ...
|
Multicasting + Cross-over cable problems
Wed, 3 Sep 2008 07:29:02 -0700
I am using socket(), bind() and setsockopt() to setup a socket and listen on
a multicasting group. It's working fine for a normal network connection.
However, I'm finding that it's not listening properly when using a
cross-over cable connection. If the socket setup happens before the remote
computer start ...
|
how to connect PPC with desktop using WiFi?
Wed, 3 Sep 2008 06:28:01 -0700
I need to send video from Pocket PC to desktop PC using WiFi. The PPC is a
WiFi device. Could you please give me some advice on how to start with? Is
there some examples or documents that I can refer to ?
I saw from some posts that we can communicate with winsock. But how?
eg. the socket() function, how to ...
|