Change
authorJihoon Jung <jh8801.jung@samsung.com>
Tue, 12 Dec 2017 12:00:06 +0000 (21:00 +0900)
committersaerome.kim <saerome.kim@samsung.com>
Mon, 2 Jul 2018 10:38:37 +0000 (19:38 +0900)
Signed-off-by: Jihoon Jung <jh8801.jung@samsung.com>
src/fn-manager/fn_group.c
src/include/fn_group.h
src/include/fn_tx.h

index f879f76289be6f23ef6ee1d95d7d6a3a48c567c1..ade2e095413dd5e7b54320973afb8c7a7689b83f 100755 (executable)
@@ -1,2 +1,25 @@
 #include <fn_group.h>
 
+int fn_group_initialize()
+{
+       //create group list (get from db?)
+       //create group resources
+       //create group operation resource
+}
+int fn_group_discovery()
+{
+       //if I'm owner, get the device list and info in network.
+       //if I'm client, get the owner and group list.
+}
+
+int fn_group_join()
+{
+       //if I'm owner, join the client to group
+       //if I'm client, request join to operation resource, and it process in owner rx thread.
+}
+
+int fn_group_get_group_list()
+{
+       //return the group list
+}
+
index eb5073911493a412b0b0b0d61bd0fba3920ef68d..d7bea2bb963a68495ebe69854683d31bc9be1299 100755 (executable)
@@ -1,4 +1,9 @@
 #ifndef __FN_GROUP_H__
 #define __FN_GROUP_H__
 
+int fn_group_initialize();
+int fn_group_discovery();
+int fn_group_join();
+int fn_group_get_group_list();
+
 #endif
index 8b137891791fe96927ad78e64b0aad7bded08bdc..26e367e960d518fcae83a1c76e75f27558ca7203 100755 (executable)
@@ -1 +1,5 @@
+#ifndef __FN_TX_H__
+#define __FN_TX_H__
+
+#endif