Lines Matching refs:push

84             self.baseclass.push('226 transfer complete')
88 def push(self, what):
94 super(DummyDTPHandler, self).push(what.encode(self.encoding))
117 self.push('220 welcome')
131 self.push(self.next_response)
144 self.push('550 command "%s" not understood.' %cmd)
149 def push(self, data):
150 asynchat.async_chat.push(self, data.encode(self.encoding) + b'\r\n')
158 self.push('200 active data connection established')
166 self.push('227 entering passive mode (%s,%d,%d)' %(ip, p1, p2))
175 self.push('200 active data connection established')
182 self.push('229 entering extended passive mode (|||%d|)' %port)
188 self.push(arg)
191 self.push('200 noop ok')
194 self.push('331 username ok')
197 self.push('230 password ok')
200 self.push('230 acct ok')
203 self.push('350 rnfr ok')
206 self.push('250 rnto ok')
209 self.push('250 dele ok')
212 self.push('250 cwd ok')
215 self.push('250 1000')
218 self.push('257 "%s"' %arg)
221 self.push('250 rmd ok')
224 self.push('257 "pwd ok"')
227 self.push('200 type ok')
230 self.push('221 quit ok')
234 self.push('226 abor ok')
237 self.push('125 stor ok')
241 self.push('350 rest ok')
244 self.push('125 retr ok')
249 self.dtp.push(self.next_retr_data[offset:])
254 self.push('125 list ok')
255 self.dtp.push(LIST_DATA)
259 self.push('125 nlst ok')
260 self.dtp.push(NLST_DATA)
264 self.push('200 opts ok')
267 self.push('125 mlsd ok')
268 self.dtp.push(MLSD_DATA)
274 self.push('125 setlongretr ok')
459 self.push('234 AUTH TLS successful')
463 self.push('220 Reverting back to clear-text')
472 self.push('200 PBSZ=0 successful.')
478 self.push('200 Protection set to Clear')
481 self.push('200 Protection set to Private')
484 self.push("502 Unrecognized PROT type (use C or P).")