Subversion Repositories HomeAutomation

Rev

Rev 1940 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1940 Rev 1959
Line 44... Line 44...
44
   
44
   
45
    void InitializeDone();
45
    void InitializeDone();
46
    void CallOutput(unsigned int request_id, std::string output);
46
    void CallOutput(unsigned int request_id, std::string output);
47
   
47
   
48
private:
48
private:
-
 
49
    void SlotOnNewState(net::SocketId client_id, net::SocketId server_id, net::ClientState client_state);
49
    static logging::Logger LOG;
50
    void SlotOnNewData(net::SocketId client_id, net::SocketId server_id, common::Byteset data);
50
 
51
 
51
    void SlotOnNewState(net::ClientId client_id, net::ServerId server_id, net::ClientState client_state);
-
 
52
    void SlotOnNewData(net::ClientId client_id, net::ServerId server_id, common::Byteset data);
-
 
53
 
-
 
54
    void SlotOnNewStateHandler(net::ClientId client_id, net::ServerId server_id, net::ClientState client_state);
52
    void SlotOnNewStateHandler(net::SocketId client_id, net::SocketId server_id, net::ClientState client_state);
55
    void SlotOnNewDataHandler(net::ClientId client_id, net::ServerId server_id, common::Byteset data);
53
    void SlotOnNewDataHandler(net::SocketId client_id, net::SocketId server_id, common::Byteset data);
56
   
54
   
-
 
55
    static Value Export_StartServer(const v8::Arguments& args);
57
    static Value Export_Connect(const v8::Arguments& args);
56
    static Value Export_Connect(const v8::Arguments& args);
-
 
57
    static Value Export_StopServer(const v8::Arguments& args);
58
    static Value Export_Disconnect(const v8::Arguments& args);
58
    static Value Export_Disconnect(const v8::Arguments& args);
59
    static Value Export_Send(const v8::Arguments& args);
59
    static Value Export_Send(const v8::Arguments& args);
60
};
60
};
61
 
61
 
62
}; // namespace plugin
62
}; // namespace plugin