[FIX] build fix
authorVitaliy Cherepanov <v.cherepanov@samsung.com>
Wed, 24 Jul 2013 16:42:30 +0000 (20:42 +0400)
committerVitaliy Cherepanov <v.cherepanov@samsung.com>
Wed, 24 Jul 2013 16:42:30 +0000 (20:42 +0400)
    - sendACKToHost function now is public

daemon/da_protocol.c
daemon/da_protocol.h

index 8dec2e0..14493dd 100644 (file)
@@ -852,7 +852,7 @@ static int send_reply(struct msg_t *msg)
        return 0;
 }
 
-static int sendACKToHost(enum HostMessageT resp, enum ErrorCode err_code,
+int sendACKToHost(enum HostMessageT resp, enum ErrorCode err_code,
                        char *payload, int payload_size)
 {
        if (manager.host.control_socket != -1)
index 73039ea..786224e 100644 (file)
@@ -327,4 +327,7 @@ extern struct prof_session_t prof_session;
 //debugs
 void print_replay_event( struct replay_event_t *ev,  uint32_t num, char *tab);
 
+int sendACKToHost(enum HostMessageT resp, enum ErrorCode err_code,
+                       char *payload, int payload_size);
+
 #endif /* _DA_PROTOCOL_ */