PDA

View Full Version : Reading Kazaa Traffic info


View Full Version : Reading Kazaa Traffic info


Javen
May 12th, 2003, 07:04 AM
Hi all,

I am hoping some of the smart people here can help me out... I am writing a plug-in for an LCD display program, which outputs Kazaa information to an LCD.

I have successfully obtained the Hwnd of the application, and have drilled down to the Hwnd of the traffic box. However, I am struggling to get data out about the downloads e.g. speed, size, users etc.

Please help,

Javen

isus
May 17th, 2003, 07:16 PM
sounds good... by lcd, i assume you mean the lcd's that you can get and install in a drive bay on your pc?

sorry though, i can't help ya out at all :-\

Javen
May 19th, 2003, 02:28 AM
Yup,

I am a Plug-in programmer for an LCD Driver application called LCDC (http://www.lcdc.cc) , where I have a dozen or so people baying for the latest release of my Kazaa Plug-in...

Anyway, thanks for checking the thread out!

Javen

Mel_Smiley
May 19th, 2003, 02:37 AM
What kinda info??? IP's, shared files? who's wanting such a thing?

Javen
May 20th, 2003, 05:59 AM
Basically, all I want to do is to extract the information which is displayed within the Traffic window...

Number fo Downloads
For each download...
Filename,
Time Remaining,
Size,
Number of Users,
Bandwidth etc.

I don't want any restricted info, or IPs or anything, just the basics...

I have tried two ways of getting this...

A) Reading the info from the Handle of the TreeViews (which was very tricky)

B) Reading .dat files in Delphi

I have succeeded in reading some info from a .dat file, but it is difficult, and I am struggling... hence this post.

Any help would be greatly appreciated...

Javen

ferrarimodena360
May 20th, 2003, 06:09 AM
You are working for RIAA arent ya?

LOL

Javen
May 23rd, 2003, 03:30 AM
Nope!

Worth checking though :)

I am working on a Plug-in for a wicked LCD display program.

For more details of what I have achivede so far, please see this thread...

LCDC Forums (http://forums.planetdps.com/index.php?act=ST&f=7&t=1051&)

Cheers for all the interest!

Javen

noxiousneo
May 30th, 2003, 01:53 AM
OOOooooo??? Delphi.... Mr Posh!!!! j/k

-NoX-

Rocko666
May 31st, 2003, 06:12 PM
If you want to read it from other process the best way is using Win2k/XP VirtualAllocEx function, or you can write a cd_clint.dll file to get into the Kazaa process to be compatible with all OS.

Then you need to get the lParam from the Treeview item. It holds a pointer to a Ole String handle, that have the text in that item.

Rocko