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 f879f76..ade2e09 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 eb50739..d7bea2b 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 8b13789..26e367e 100755 (executable)
@@ -1 +1,5 @@
+#ifndef __FN_TX_H__
+#define __FN_TX_H__
+
+#endif