0
votes
1answer
46 views

A way to identify a socket in OnClientConnect event?

I have a client, and i want the server to (from advanced) identify him in the OnClientConnect event, is it possible ? do i need to do something in the OnConnect event of TClientSocket ? for example, ...
1
vote
1answer
118 views

Does using tcp guarantee it will be sent/received?

I've been working on a simple winsock file transfer for a friend and me to share files without needing to upload to mediafire everytime.But a problem I have ran into is/was(depending on how you see my ...
1
vote
0answers
143 views

How do I hook ws2_32.connect on Windows XP?

I've been hooking ws2_32's connect function in external processes. I simply create the process with CREATE_SUSPENDED and then inject the "hook.dll" into the process to hook the connect function. ...
1
vote
1answer
95 views

Why is it not safe to use Socket.ReceiveLength?

Well, even Embarcadero states that it is not guaranteed to return accurate result of the bytes ready to read in the socket buffer, but if you look at it, when you place -1 at Socket.ReceiveBuf (this ...
0
votes
1answer
76 views

Tidhttp taking too long for multimedia webpages

Tidhttp.Get() appears to take a long time to return the html source at the url containing videos etc. Is there a way I can set it to ignore all images and videos? I only need the html source.
0
votes
1answer
132 views

How do i forcibly process messages inside a thread?

Despite having Application.ProcessMessages, which is only for the Main VCL Thread, is there a similiar method for a TThread class ? or how can i write one on my own ? lets say that on the client side ...
-1
votes
1answer
123 views

Prevent a process to access internet [closed]

I'm using Delphi and I would like to code a small "loader" that starts an application and hooks all the Socket APIs so it prevents access to the internet. I have a working hook unit to do that but I ...
0
votes
1answer
91 views

is it safe to define a Helper Class for TCustomWinSocket?

in order to make it more comfortable for me to read/write code, i stacked all those functions into a helper class, so i could avoid all these silly functions in client/server main units, i have put it ...
0
votes
1answer
129 views

I keep receiving 0 byte from TClientSocket

Using DbgView, i saw that after i receive a Stream, the server then receives 0 bytes like more than 100 times, what is this ? this is new to me, i never saw this happening. i personally have a ...
0
votes
1answer
107 views

How to use SO_KEEPALIVE with TServerSocket?

Does the component has a set option property or i need to use setsockopt function ? i want to enable the os built in Keep-alive instead of me having to write it myself... -.-" so, my question is, ...
2
votes
0answers
170 views

How to detect IPV6 address change in Delphi 7?

I was looking for a way to detect the IPV6 address change using delphi 7 on Windows XP and above. For vista , there is a windows API i know. I came across code that claimed to do the same on XP as ...
10
votes
1answer
359 views

Get IP-Address from DNS without GetHostByName

I am using GetHostByName to get the IP-Address from a Host/DNS. I also have Kaspersky Internet Security 2013 and noticed that GetHostByName gets picked by it. It seems that that my process tries to ...
0
votes
2answers
288 views

Delphi, my sniffer wont work on WLAN

I have a working sniffer program, written in Delphi. Its good in LAN. But when my computer is on WLAN, it wont log anything. Initializing: if (WSAStartup(MAKEWORD(2,2), Wsa) <> 0) then ...
2
votes
2answers
308 views

Exchanging data over sockets

When i send to client a string (tkString), client tells me (inside WMClientRecv) access violation when trying to rebuild TValue, why ? -_-" with other typed data it works well... for example, Integer ...
1
vote
2answers
421 views

Sending a Dynamic array (Inside a record) through Socket?

i'm trying to transfer a record from server to client, directly using .SendBuf(). however, this record has a member which is a dynamic array, and i have read somewhere (here in SOF) that when sending ...
3
votes
1answer
221 views

Delphi code works in console but not VLC

I made my OWN unit to get a POST request from a webserver using winsocket. Here is my unit: unit uGetPost; interface uses Winsock, SysUtils, Windows; function GetPost(CompleteURL, PostData : ...
3
votes
1answer
465 views

How to test a network device for a valid RTSP stream?

I am working on a project which streams video/audio through RTSP using VLC Media Player plugin. I would like to provide an option to scan the network for RTSP cameras. I'm sure this will consist of ...
0
votes
2answers
318 views

why does recv sometimes not return when connection is closed?

I have a simple winsock client/server application. Mostly everything works fine, but sometimes recv does not return a value even when the client application is terminated. Quote from MSDN: If no ...
0
votes
1answer
361 views

Winsock recv in different threads

I am using winsock as a client with about 10 threads. Each thread has it's own unique connection to the same host and port. All threads are connected and they all need to read a certain amount of ...
1
vote
2answers
316 views

Delphi internet hook

I want write a program in Delphi to watch the internet connection, and if a certain response received (in response to request from a program), send request again encoded to another server, get a new ...
5
votes
2answers
454 views

Memory Leak GETIPFROMHOST

I have this code right here to retrive the IP-address from a hostname: program Project1; {$APPTYPE CONSOLE} uses SysUtils, winsock; function GetIPFromHost(const HostName: string): string; type ...
2
votes
1answer
401 views

Delphi XE and Winsock

I'm upgrading my application from Delphi 2007 to Delphi XE. I have my personal written Socket component. In the new environment (XE) it is not working properly. The same code works in Delphi 2007. ...
0
votes
4answers
259 views

How to look for any and all computers on a network which are using my service?

I have a custom pair of client/server sockets (TJDServerSocket and TJDClientSocket) which wrap the TServerSocket and TClientSocket in the ScktComp unit. I don't have any issues to fix, but would like ...
1
vote
1answer
493 views

udp packet loss

I have a program which sends data from one pc to another using UDP (size of data 150 bytes). That program is writen in delphi 7 (TldUDPClient and TldUDPServer components using to send and recive ...
0
votes
3answers
720 views

How can I add HTTPS support to a Delphi WinSock HTTP upload application?

In a commercial Delphi library, WinSock API functions like WinSock.connect and WinSock.send are used to upload files to a HTTP server. Is there a way to support HTTPS? I found ...
2
votes
3answers
215 views

What can happen when I forcly terminate thread at Winsock connect function?

What can happen when I use TerminateThread while Winsock connect function is in progress? I need to immediately shutdown the thread which is currently connecting to the socket but I don't know what ...
3
votes
2answers
667 views

Delphi wrappers for getnameinfo and getaddrinfo

I'm trying to find Delphi wrappers for getnameinfo and getaddrinfo socket APIs. Does anybody know where to find them or has created them and would not mind to share?
1
vote
1answer
351 views

Does changing this one line implement persistent keep-alive connections?

After the appropriate initializations, here's an infinite loop to service incoming HTTPS requests, but only one connection per request (and assuming requests need only one read): while TRUE do ...
1
vote
2answers
766 views

GetMem for one PChar variable change content of other PChar variable

So, I have the folowing problem. I have 2 PChar variables. I allocate memory for first, do some operations, allocate memory for the second variable - and on this step the first variable contains bad ...
2
votes
1answer
418 views

PChar Invalid Pointer Operation on StrPLCopy

I write some TCP-server usin WinSock 2 and I hava procedure which catch FD_READ event. In this procedure I need to parse recieved message. The code is here: procedure ...
1
vote
1answer
1k views

inet_addr returns -1 for localhost

Using Delphi XE and the winsock unit I have the following code: var fHost: AnsiString; begin inet_addr(PAnsiChar(fhost)); fHost can be an ip address or a host name. when fhost = '127.0.0.1' ...
1
vote
1answer
829 views

Can anyone give example of using sockets to send file?

I need to create two programs: Server Client The server sends request to client, then the client receives request and captures the screen using this function: function ...
2
votes
3answers
351 views

Problem sending more then 2 lines at time

I have problem with sockets. If i send more then two lines of text using TClientSocket then server receives one line instead of two. Client part: ClientSocket1.Socket.SendText(Edit1.Text);//Text is ...
0
votes
1answer
735 views

Force Http 1.0 idHttpServer and TIME_WAIT

Delphi 2010, Last Indy source code from Svn. Does anyone knows how can I force TIDHttpServer to send a http 1.0 response, instead of sending http 1.1? I want to get rid of persistent connections ...
1
vote
2answers
645 views

File Transfer using winsock

I want to send files(text or binary) through winsock,I have a buffer with 32768 byte size, In the other side the buffer size is same,But when the packet size <32768 then i don't know how ...
0
votes
1answer
384 views

GetAcceptExSockaddrs returns garbage! Does anyone know why?

[I've followed the suggestion to use Winsock.pas, but it still writes garbage -- although the sin_family field has changed to a new garbage value.] Hello, I'm trying to write a quick/dirty echoserver ...
2
votes
1answer
4k views

Getting local IP address in Delphi [duplicate]

Possible Duplicate: Delphi, How to get all local IPs? What's the easiest & quickest method for obtaining a local IP address of the machine in Delphi 2009 without using 3rd-party ...
0
votes
2answers
3k views

Running an external php script from Delphi

Ok - this is in continuation from my earlier question about sending an email using a php script. I'm now using PEAR to send the mail. The php script i use is the following one (successfull if executed ...
4
votes
6answers
9k views

Delphi, How to get all local IPs?

Any one know a way in delphi get a simple list (eg tstrings) of the local ip address. I have had a look at the other related question, and cant seem to get my head around converting them to delphi.