diff options
| author | alpine <[email protected]> | 2020-06-16 13:35:02 +0200 |
|---|---|---|
| committer | alpine <[email protected]> | 2020-06-16 13:35:02 +0200 |
| commit | 4a1762e5a6cdf995bd4ff959c17dbdef5189adea (patch) | |
| tree | 5cbd5c3bf899ce639493064005463fe0cf82a8a6 /client/src/main.cpp | |
| parent | Finished session/user id generation. (diff) | |
| download | loader-4a1762e5a6cdf995bd4ff959c17dbdef5189adea.tar.xz loader-4a1762e5a6cdf995bd4ff959c17dbdef5189adea.zip | |
Renamed uid to session id.
Diffstat (limited to 'client/src/main.cpp')
| -rw-r--r-- | client/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/main.cpp b/client/src/main.cpp index a9fecec..7177511 100644 --- a/client/src/main.cpp +++ b/client/src/main.cpp @@ -8,7 +8,7 @@ int main(int argc, char *argv[]) { tcp::client client; if (client.start("127.0.0.1", 6666)) { - if(!client.set_uid()) { + if(!client.set_session()) { io::logger->error("failed to set session id."); return 0; } |