Re: Winsock control web server 8k file limit
Did either of you to ever get this working?
I am intregued as to why it only sends 8k :confused:
Can you post any code?
Woka
PS This is the oldest post on VBF :D
Re: Winsock control web server 8k file limit
Through the local network it is 8K usually, through the internet it really depends on the networkS it goes through, if one of the networks is max 1K chunk then all data your gonna receive will be in 1K chunks, not matter of the other networks, it is always the lowest chunk size of all of the networks from sending to receiving computers. Usually through internet the chink size should be ~ 4K (from my tests, a long time ago)
It actually makes sense to me... lets say the file you send is 100GBytes (i'm exagerating of course), if you don't chunk the data, how are you gonna send a file that big ?
How about if your streamming audio/video ? data gets sent continuosly, there is no end and beginning...
Re: Winsock control web server 8k file limit
Quote:
Originally Posted by Wokawidget
PS This is the oldest post on VBF :D
Do you actually think this user is still using the VBF ? I really doubt it
Re: Winsock control web server 8k file limit
Where were you 5 years ago, WHEN THE QUESTION WAS ASKED? :wave:
Re: Winsock control web server 8k file limit
Quote:
Originally Posted by CVMichael
Through the local network it is 8K usually, through the internet it really depends on the networkS it goes through, if one of the networks is max 1K chunk then all data your gonna receive will be in 1K chunks, not matter of the other networks, it is always the lowest chunk size of all of the networks from sending to receiving computers. Usually through internet the chink size should be ~ 4K (from my tests, a long time ago)
It actually makes sense to me... lets say the file you send is 100GBytes (i'm exagerating of course), if you don't chunk the data, how are you gonna send a file that big ?
How about if your streamming audio/video ? data gets sent continuosly, there is no end and beginning...
Yea, but you can build the "chunks" up into a big "chunk" and then validate it, or do whatever with it.
Woka