Lines Matching refs:option_str
236 def send_do(self, option_str):
237 log.debug("Sending DO %s", option_str)
238 self.send_iac([NegTokens.DO, NegOptions.to_val(option_str)])
240 def send_dont(self, option_str):
241 log.debug("Sending DONT %s", option_str)
242 self.send_iac([NegTokens.DONT, NegOptions.to_val(option_str)])
244 def send_will(self, option_str):
245 log.debug("Sending WILL %s", option_str)
246 self.send_iac([NegTokens.WILL, NegOptions.to_val(option_str)])
248 def send_wont(self, option_str):
249 log.debug("Sending WONT %s", option_str)
250 self.send_iac([NegTokens.WONT, NegOptions.to_val(option_str)])