mirror of
				https://github.com/vlang/v.git
				synced 2023-08-10 21:13:21 +03:00 
			
		
		
		
	http: set buffer size to 1536
This commit is contained in:
		| @@ -11,6 +11,7 @@ import net | ||||
| const ( | ||||
| 	max_redirects        = 4 | ||||
| 	content_type_default = 'text/plain' | ||||
| 	bufsize = 1536 | ||||
| ) | ||||
|  | ||||
| pub struct Request { | ||||
| @@ -380,10 +381,6 @@ pub fn escape(s string) string { | ||||
| 	panic('http.escape() was replaced with http.escape_url()') | ||||
| } | ||||
|  | ||||
| const ( | ||||
| 	bufsize = 512 | ||||
| ) | ||||
|  | ||||
| fn (req &Request) http_do(port int, method, host_name, path string) ?Response { | ||||
| 	rbuffer := [bufsize]byte | ||||
| 	mut sb := strings.new_builder(100) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Alexander Medvednikov
					Alexander Medvednikov