diff options
author | Timo Dritschler <timo.dritschler@kit.edu> | 2014-04-25 19:32:51 +0200 |
---|---|---|
committer | Timo Dritschler <timo.dritschler@kit.edu> | 2014-04-25 19:37:54 +0200 |
commit | 3405180e97cd6b4d4bef6fed2a7e666eb8126906 (patch) | |
tree | 0424d46f5a14c57686fecc8b46ad133f3e7ec5b8 /test-client.c | |
parent | 2b5ad5dfa5baa9a243051022510600fd8a82fd20 (diff) | |
download | kiro-3405180e97cd6b4d4bef6fed2a7e666eb8126906.tar.gz kiro-3405180e97cd6b4d4bef6fed2a7e666eb8126906.tar.bz2 kiro-3405180e97cd6b4d4bef6fed2a7e666eb8126906.tar.xz kiro-3405180e97cd6b4d4bef6fed2a7e666eb8126906.zip |
KIRO Server and Client now automatically exchange MRI on connect
Added 'kiro_client_sync' that RDMA-READs the KIRO-TRB from the server
Updated Makefile
Updated test-client
Diffstat (limited to 'test-client.c')
-rw-r--r-- | test-client.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-client.c b/test-client.c index 67dacf7..0a318f1 100644 --- a/test-client.c +++ b/test-client.c @@ -7,6 +7,7 @@ int main(void) { KiroClient *client = g_object_new(KIRO_TYPE_CLIENT, NULL); - kiro_client_connect(client, "192.168.11.61", "60010", 5000); + kiro_client_connect(client, "192.168.11.61", "60010"); + kiro_client_sync(client); return 0; }
\ No newline at end of file |