File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
boost/network/protocol/http/impl Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ template <class Tag>
55
55
struct basic_request : public basic_message <Tag> {
56
56
57
57
mutable boost::network::uri::uri uri_;
58
- unsigned short source_port_;
58
+ boost:: uint16_t source_port_;
59
59
typedef basic_message<Tag> base_type;
60
60
61
61
public:
@@ -113,9 +113,9 @@ struct basic_request : public basic_message<Tag> {
113
113
114
114
boost::network::uri::uri const & uri () const { return uri_; }
115
115
116
- void source_port (const unsigned short port) { source_port_ = port; }
116
+ void source_port (const boost:: uint16_t port) { source_port_ = port; }
117
117
118
- unsigned short source_port () const { return source_port_; }
118
+ boost:: uint16_t source_port () const { return source_port_; }
119
119
};
120
120
121
121
/* * This is the implementation of a POD request type
You can’t perform that action at this time.
0 commit comments