File tree Expand file tree Collapse file tree 3 files changed +1
-12
lines changed
lib/libesp32/berry_tasmota/src
tasmota/tasmota_xdrv_driver Expand file tree Collapse file tree 3 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ All notable changes to this project will be documented in this file.
2222- Crash when shutting down Wifi with ` Wifi 0 ` (#24536 )
2323
2424### Removed
25+ - Berry remove ` mdns.stop() `
2526
2627## [ 15.3.0.1] 20260308
2728### Added
Original file line number Diff line number Diff line change 1414extern void m_mdns_start (struct bvm * vm , const char * hostname );
1515BE_FUNC_CTYPE_DECLARE (m_mdns_start , "" , "@[s]" )
1616
17- extern void m_mdns_stop (void );
18- BE_FUNC_CTYPE_DECLARE (m_mdns_stop , "" , "" )
19-
2017extern void m_mdns_set_hostname (struct bvm * vm , const char * hostname );
2118BE_FUNC_CTYPE_DECLARE (m_mdns_set_hostname , "" , "@s" )
2219
@@ -29,7 +26,6 @@ extern int m_dns_find_service(struct bvm *vm);
2926/* @const_object_info_begin
3027module mdns (scope: global) {
3128 start, ctype_func(m_mdns_start)
32- stop, ctype_func(m_mdns_stop)
3329 set_hostname, ctype_func(m_mdns_set_hostname)
3430 add_service, func(m_mdns_add_service)
3531 add_hostname, func(m_dns_add_hostname)
Original file line number Diff line number Diff line change @@ -45,14 +45,6 @@ extern "C" {
4545 }
4646 BE_FUNC_CTYPE_DECLARE (m_mdns_start, " " , " @[s]" )
4747
48- //
49- // `msdn.stop() -> nil`
50- // free all mdns resources
51- void m_mdns_stop(void ) {
52- mdns_free ();
53- }
54- BE_FUNC_CTYPE_DECLARE (m_mdns_stop, " " , " " )
55-
5648 //
5749 // `mdns.set_hostname(hostname:string) -> nil`
5850 // change the hostname
You can’t perform that action at this time.
0 commit comments