Skip to content

Commit

Permalink
modify version
Browse files Browse the repository at this point in the history
  • Loading branch information
fawdlstty committed Jun 1, 2022
1 parent ec162ef commit 406e440
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions include/fv/fv.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,18 @@
// Repository URL: https://github.com/fawdlstty/libfv
// Author: fawdlstty
// License: MIT
// Version: 0.0.4
// Last updated: May 21, 2022
// Version: 0.0.6
// Last updated: Jun 01, 2022
//



namespace fv {
inline const char *version = "libfv-0.0.6";
}



#include "base.hpp"
#include "common.hpp"
#include "common_funcs.hpp"
Expand Down
2 changes: 1 addition & 1 deletion include/fv/req_res.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ struct Request {
std::shared_ptr<IConn2> Conn;
bool Upgrade = false;

inline static CaseInsensitiveMap m_def_headers { { "Accept", "*/*" }, { "Accept-Encoding", "gzip" }, { "Accept-Language", "zh-CN,zh,q=0.9" }, { "Pragma", "no-cache" }, { "Cache-Control", "no-cache" }, { "Connection", "keep-alive" }, { "User-Agent", "libfv-0.0.5" } };
inline static CaseInsensitiveMap m_def_headers { { "Accept", "*/*" }, { "Accept-Encoding", "gzip" }, { "Accept-Language", "zh-CN,zh,q=0.9" }, { "Pragma", "no-cache" }, { "Cache-Control", "no-cache" }, { "Connection", "keep-alive" }, { "User-Agent", version } };
};


Expand Down

0 comments on commit 406e440

Please sign in to comment.