| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #include "../../util/logger.hpp" 2 : #include "http_frame.hpp" 3 : 4 : namespace thinger::http { 5 : 6 26 : void http_frame::set_last_frame(bool last_frame) { 7 26 : last_frame_ = last_frame; 8 26 : } 9 : 10 886 : bool http_frame::end_stream() { 11 886 : return last_frame_; 12 : } 13 : 14 18 : void http_frame::log(const char* scope, int level) const{ 15 18 : LOG_WARNING("[%s] unimplemented log method", scope); 16 18 : } 17 : 18 : } |
| Generated by: LCOV version 2.0-1 |