OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/ftp/ftp_network_transaction.h" | 5 #include "net/ftp/ftp_network_transaction.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 121 |
122 State state() const { | 122 State state() const { |
123 return state_; | 123 return state_; |
124 } | 124 } |
125 | 125 |
126 void Reset() override { | 126 void Reset() override { |
127 DynamicSocketDataProvider::Reset(); | 127 DynamicSocketDataProvider::Reset(); |
128 Init(); | 128 Init(); |
129 } | 129 } |
130 | 130 |
131 bool AllReadDataConsumed() const override { return state_ == QUIT; } | |
132 | |
133 bool AllWriteDataConsumed() const override { return state_ == QUIT; } | |
134 | |
135 void set_multiline_welcome(bool multiline) { multiline_welcome_ = multiline; } | 131 void set_multiline_welcome(bool multiline) { multiline_welcome_ = multiline; } |
136 | 132 |
137 bool use_epsv() const { return use_epsv_; } | 133 bool use_epsv() const { return use_epsv_; } |
138 void set_use_epsv(bool use_epsv) { use_epsv_ = use_epsv; } | 134 void set_use_epsv(bool use_epsv) { use_epsv_ = use_epsv; } |
139 | 135 |
140 void set_data_type(char data_type) { data_type_ = data_type; } | 136 void set_data_type(char data_type) { data_type_ = data_type; } |
141 | 137 |
142 protected: | 138 protected: |
143 void Init() { | 139 void Init() { |
144 state_ = PRE_USER; | 140 state_ = PRE_USER; |
(...skipping 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1574 FtpSocketDataProvider::PRE_TYPE, | 1570 FtpSocketDataProvider::PRE_TYPE, |
1575 "257 \"\"\r\n", | 1571 "257 \"\"\r\n", |
1576 OK); | 1572 OK); |
1577 } | 1573 } |
1578 | 1574 |
1579 INSTANTIATE_TEST_CASE_P(FTP, | 1575 INSTANTIATE_TEST_CASE_P(FTP, |
1580 FtpNetworkTransactionTest, | 1576 FtpNetworkTransactionTest, |
1581 ::testing::Values(AF_INET, AF_INET6)); | 1577 ::testing::Values(AF_INET, AF_INET6)); |
1582 | 1578 |
1583 } // namespace net | 1579 } // namespace net |
OLD | NEW |