diff options
author | fcolin | 2007-02-01 12:57:29 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 12:57:29 +0000 |
commit | 958e07bf2fb04cca1dcbf9fe26bbf695552aaa6a (patch) | |
tree | a75f9c27d62c8556cac2ff5905427190b43c65f6 /Bus/Ivy | |
parent | a837c6807934aab9b12ae9e10274189e96e7d34c (diff) | |
download | ivy-cplusplus-958e07bf2fb04cca1dcbf9fe26bbf695552aaa6a.zip ivy-cplusplus-958e07bf2fb04cca1dcbf9fe26bbf695552aaa6a.tar.gz ivy-cplusplus-958e07bf2fb04cca1dcbf9fe26bbf695552aaa6a.tar.bz2 ivy-cplusplus-958e07bf2fb04cca1dcbf9fe26bbf695552aaa6a.tar.xz |
Utilisateur : Fcolin Date : 23/05/06 Heure : 18:18 Archivé dans $/Bus/Ivy Commentaire: Modification protocol UDP (vss 16)
Diffstat (limited to 'Bus/Ivy')
-rw-r--r-- | Bus/Ivy/Ivy.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Bus/Ivy/Ivy.h b/Bus/Ivy/Ivy.h index 806c205..ddbc752 100644 --- a/Bus/Ivy/Ivy.h +++ b/Bus/Ivy/Ivy.h @@ -58,7 +58,9 @@ private: /* list des adresses de broadcast */
ivy::string domain;
/* nom de l'appliction */
- ivy::string appname;
+ ivy::string ApplicationName;
+ /* Aplication Unique ID */
+ ivy::string ApplicationID;
/* liste des clients connectes */
CRITICAL_SECTION m_application_cs;
typedef ivy::list<IvyApplication*> IvyApplicationList;
@@ -84,7 +86,7 @@ protected: void CallDirectMessageCallback( IvyApplication *app, int id, const char *arg );
void CallMessageCallback( IvyApplication *app, int id, int argc, const char **argv );
-
+ const char *GenApplicationUniqueIdentifier();
public:
void Classes( int argc, const char **argv );
|