Lines Matching refs:option_str
198 def send_do(self, option_str): argument
199 log.debug("Sending DO %s", option_str)
200 self.send_iac([NegTokens.DO, NegOptions.to_val(option_str)])
202 def send_dont(self, option_str): argument
203 log.debug("Sending DONT %s", option_str)
204 self.send_iac([NegTokens.DONT, NegOptions.to_val(option_str)])
206 def send_will(self, option_str): argument
207 log.debug("Sending WILL %s", option_str)
208 self.send_iac([NegTokens.WILL, NegOptions.to_val(option_str)])
210 def send_wont(self, option_str): argument
211 log.debug("Sending WONT %s", option_str)
212 self.send_iac([NegTokens.WONT, NegOptions.to_val(option_str)])