There I can find source code of topic?
Thanx 4 request.
Thanx 4 request.
here is some:
http://war.jgaa.com/ftp/?cmd=src
http://war.jgaa.com/ftp/?cmd=src
Thank you very much!
but this samples are for unix? if you know where I can find FTPClient source for win32asm, tell me pliz
but this samples are for unix? if you know where I can find FTPClient source for win32asm, tell me pliz
If you are looking for the source code of a working FTP program here, I don't think you are going to find it.
But if you have started your own code and are having problems, I imagine there are plenty of people here that would be happy to check it out.
So if you just want the source code given to you .. google I guess.
But if you have started your own code and are having problems, I imagine there are plenty of people here that would be happy to check it out.
So if you just want the source code given to you .. google I guess.
I need only source code, but I don't find it with help of google :(
If u find it, please post url here or send email 4 me.
If u find it, please post url here or send email 4 me.
i will strongly suggest you first start with RFCs. it doesnt matter which language you are using for writing a client. writing a ftp client id more or less like writing/handling texts from socket file descriptors. there isnt anything complicated. the protocol is very clearly documented. if you can handle strings manipultations in win32asm , then you can very easily write your own ftp client.
going through RFC: HIGHLY RECOMMENDED !
hope this helps...
going through RFC: HIGHLY RECOMMENDED !
hope this helps...
I'm not so good in ASM... I have allready seen this RFC. Thanx
htpp://www.rentacoder.com <-- here you can order ready made source, on all other locations you'll have to do with what people can give you.
I'm not a citizen of the US, and I can't register there :(
you don't need to be :|
anyway be sure to check things like planetsourcecode.com and programmersheaven.com. they might have the source you're looking for.
anyway be sure to check things like planetsourcecode.com and programmersheaven.com. they might have the source you're looking for.
search sourceforge for ninja ftp or something like that.I saw one ftp app written in masm32.
ah true
good that you remind us, I have that source still
it's best that you contact the author because if I recall correctly this is not finished source.
good that you remind us, I have that source still
it's best that you contact the author because if I recall correctly this is not finished source.
How to make complite exe file from this source? I'm begginer in asm!
Hi Hiro,
Im able to compile and link this thing, but no resources are included. Is this all you've got?
Im able to compile and link this thing, but no resources are included. Is this all you've got?
yep :/
the author's e-mail is in the source though :)
the author's e-mail is in the source though :)
how to make exe from this source?
how can you ask for source if you don't know how to handle it? I suggest you check out iczelion's tutorials ( http://win32asm.cjb.net ) starting with tutorial 1. It will teach you the basics of programming in assembly and you will learn to handle source. :|
But the source itself, what do you need it for? if you just need an ftp client use smartftp http://www.smartftp.com
But the source itself, what do you need it for? if you just need an ftp client use smartftp http://www.smartftp.com
And perhaps you should have a look at http://www.rarlabs.com
thats the make.bat i used to compile it.
but without resources the exe is of little use.
@echo off
\masm32\bin\ml -c -Cp -coff -nologo ftp.asm
\masm32\bin\ml -c -Cp -coff -nologo reg.asm
\masm32\bin\ml -c -Cp -coff -nologo ui\bookmark.asm
\masm32\bin\ml -c -Cp -coff -nologo ui\wizard.asm
\masm32\bin\ml -c -Cp -coff -nologo ui\tray.asm
\masm32\bin\lib /nologo bookmark.obj /out:ui\bookmark.lib
\masm32\bin\lib /nologo wizard.obj /out:ui\wizard.lib
\masm32\bin\lib /nologo tray.obj /out:ui\tray.lib
\masm32\bin\lib /nologo reg.obj /out:reg.lib
\masm32\bin\link ftp /nologo /out:ftp.exe /subsystem:windows
but without resources the exe is of little use.
Thank you very much!!!