2013-11-04 14:07:21 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
|
|
|
;; Copyright (C) KolibriOS team 2004-2013. All rights reserved. ;;
|
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
|
|
|
;; HTTP library for KolibriOS ;;
|
|
|
|
;; ;;
|
|
|
|
;; Written by hidnplayr@kolibrios.org ;;
|
|
|
|
;; ;;
|
|
|
|
;; GNU GENERAL PUBLIC LICENSE ;;
|
|
|
|
;; Version 2, June 1991 ;;
|
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
|
2013-11-11 18:28:49 +01:00
|
|
|
; Bitflags for http_msg.flags
|
2013-11-04 14:07:21 +01:00
|
|
|
FLAG_HTTP11 = 1 shl 0
|
|
|
|
FLAG_GOT_HEADER = 1 shl 1
|
2013-11-11 12:35:18 +01:00
|
|
|
FLAG_GOT_ALL_DATA = 1 shl 2
|
2013-11-04 14:07:21 +01:00
|
|
|
FLAG_CONTENT_LENGTH = 1 shl 3
|
|
|
|
FLAG_CHUNKED = 1 shl 4
|
2013-11-11 12:35:18 +01:00
|
|
|
FLAG_CONNECTED = 1 shl 5
|
2013-11-11 18:28:49 +01:00
|
|
|
; ERROR flags go into the upper word
|
2013-11-04 14:07:21 +01:00
|
|
|
FLAG_INVALID_HEADER = 1 shl 16
|
|
|
|
FLAG_NO_RAM = 1 shl 17
|
|
|
|
FLAG_SOCKET_ERROR = 1 shl 18
|
2013-11-11 13:29:54 +01:00
|
|
|
FLAG_TIMEOUT_ERROR = 1 shl 19
|
2013-11-12 21:08:02 +01:00
|
|
|
FLAG_TRANSFER_FAILED = 1 shl 20
|
2013-11-04 14:07:21 +01:00
|
|
|
|
|
|
|
struc http_msg {
|
2013-11-11 18:28:49 +01:00
|
|
|
|
|
|
|
.socket dd ? ; socket on which the actual transfer happens
|
|
|
|
.flags dd ? ; flags, reflects status of the transfer using bitflags
|
|
|
|
.write_ptr dd ? ; internal use only (where to write new data in buffer)
|
|
|
|
.buffer_length dd ? ; internal use only (number of available bytes in buffer)
|
|
|
|
.chunk_ptr dd ? ; internal use only (where the next chunk begins)
|
|
|
|
.timestamp dd ? ; internal use only (when last data was received)
|
|
|
|
.status dd ? ; HTTP status
|
|
|
|
.header_length dd ? ; length of HTTP header
|
|
|
|
.content_length dd ? ; length of HTTP content
|
|
|
|
.content_received dd ? ; number of currently received content bytes
|
2013-11-04 14:07:21 +01:00
|
|
|
.data:
|
2013-11-11 18:28:49 +01:00
|
|
|
|
2013-11-04 14:07:21 +01:00
|
|
|
}
|