Skip to content
Snippets Groups Projects

Changing nodelist to Network.Devices

Closed Nevadita requested to merge nevdvlnxt into devel-next
2 unresolved threads
  1. struct node has been deleted to change to wifi.network.devices
  2. nodelist has been deleted

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
586 586 //anticipated_chanlist.usage
587 587 uint8_t has_easymesh_controller; // 0, 1 or 2
588 588 uint8_t has_easymesh_agent; // 0, 1 or 2
589
590 //Private elements that are needed for node
591 struct controller *cntlr;
  • struct controller and node_policy are internal structures of cntlr.h and config.h, can not have dependency in wifi_dataelements.h on these structures

  • Imagine that wifi_dataelements.h will get #included in another project. 'struct controller' will be undefined!

    It is actually the other way round -

    struct controller {
         struct wifi_network net;
         :
    };
  • Please register or sign in to reply
  • Nevadita added 1 commit

    added 1 commit

    • 828895c4 - dataelement2: Adding the code for assoc/disassoc event

    Compare with previous version

  • Nevadita added 1 commit

    added 1 commit

    • 1948a1af - dataelements2: Fixing static code error

    Compare with previous version

  • Nevadita requested review from @anjancx

    requested review from @anjancx

  • 611 617 };
    612 618
    613 619 struct wifi_sta_events {
    614 uint32_t old_assoc_events;
    615 uint32_t old_disassoc_events;
    620 uint32_t front_assoc_events;
    621 uint32_t rear_assoc_events;
    622 uint32_t front_disassoc_events;
    623 uint32_t rear_disassoc_events;
    616 624 uint32_t num_assoc_events;
    617 625 uint32_t num_disassoc_events;
    618 struct list_head assoc_eventlist; /* list of wifi_assoc_events */
    619 struct list_head disassoc_eventlist; /* list of wifi_disassoc_events */
    626 struct wifi_assoc_events *assoc_events; /* wifi_assoc_events */
  • closed

  • Please register or sign in to reply
    Loading