Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecpp
firstline1
titleAP模式
linenumberstrue
	std::map<std::string, std::string> options;
	options["ssid"] = "test";      
	options["password"] = "12345678"; // password length should surpass 8 
	options["ip"] = "192.168.11.101"; // do not use address from 192.168.11.1 to 192.168.11.100 (reserved for internal usage)
	options["channel"] = "6";
	result = sdp.configurateNetwork(NetworkMode::NetworkModeAP, options);

...