Skip to content

Commit

Permalink
Function name code conventions fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Juha Heiskanen authored and juhhei01 committed Jun 25, 2018
1 parent 1350bc5 commit 47619c4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions source/6LoWPAN/Thread/thread_neighbor_class.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ bool thread_neighbor_class_request_full_data_setup(thread_neighbor_class_t *clas

}

bool thread_neighbor_class_request_secured_data_request(thread_neighbor_class_t *class_ptr, uint8_t attribute_index)
bool thread_neighbor_class_secured_data_request(thread_neighbor_class_t *class_ptr, uint8_t attribute_index)
{
thread_neigh_table_entry_t *entry = thread_neighbor_class_table_entry_get(class_ptr,attribute_index);
if (!entry) {
Expand All @@ -154,7 +154,7 @@ void thread_neighbor_class_request_full_data_setup_set(thread_neighbor_class_t *
}
}

void thread_neighbor_class_request_secured_data_request_set(thread_neighbor_class_t *class_ptr, uint8_t attribute_index, bool value)
void thread_neighbor_class_secured_data_request_set(thread_neighbor_class_t *class_ptr, uint8_t attribute_index, bool value)
{
thread_neigh_table_entry_t *entry = thread_neighbor_class_table_entry_get(class_ptr,attribute_index);
if (entry) {
Expand Down
4 changes: 2 additions & 2 deletions source/6LoWPAN/Thread/thread_neighbor_class.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ bool thread_neighbor_class_mleid_compare(struct thread_neighbor_class_s *class_p

bool thread_neighbor_class_request_full_data_setup(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index);

bool thread_neighbor_class_request_secured_data_request(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index);
bool thread_neighbor_class_secured_data_request(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index);

void thread_neighbor_class_mode_parse_to_entry(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, uint8_t mode);

uint8_t thread_neighbor_class_mode_write_from_entry(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index);

void thread_neighbor_class_request_full_data_setup_set(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, bool value);

void thread_neighbor_class_request_secured_data_request_set(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, bool value);
void thread_neighbor_class_secured_data_request_set(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, bool value);

void thread_neighbor_class_entry_remove(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index);

Expand Down
4 changes: 2 additions & 2 deletions test/nanostack/unittest/stub/thread_neighbor_class_stub.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ bool thread_neighbor_class_request_full_data_setup(struct thread_neighbor_class_
return true;
}

bool thread_neighbor_class_request_secured_data_request(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index)
bool thread_neighbor_class_secured_data_request(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index)
{
return false;
}
Expand All @@ -104,7 +104,7 @@ void thread_neighbor_class_request_full_data_setup_set(struct thread_neighbor_cl

}

void thread_neighbor_class_request_secured_data_request_set(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, bool value)
void thread_neighbor_class_secured_data_request_set(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, bool value)
{

}

0 comments on commit 47619c4

Please sign in to comment.