Skip to content

Commit

Permalink
Prepare for release 4.5.0
Browse files Browse the repository at this point in the history
Change the client identification, clean up some test code etc.
  • Loading branch information
wernerd committed Jan 4, 2016
1 parent 7dd10e6 commit 59390df
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion clients/ccrtp/CMakeLists.txt
Expand Up @@ -79,7 +79,7 @@ add_library(${zrtplibName} ${LIBRARY_BUILD_TYPE} ${zrtpcpp_src})
set_target_properties(${zrtplibName} PROPERTIES VERSION ${VERSION} SOVERSION ${SOVERSION})
target_link_libraries(${zrtplibName} ${LIBS})

add_dependencies(${zrtplibName} ccrtp)
# add_dependencies(${zrtplibName} ccrtp)

# **** Setup packing environment ****
#
Expand Down
7 changes: 0 additions & 7 deletions clients/tivi/testdriver.cpp
Expand Up @@ -137,13 +137,6 @@ int main(int argc,char **argv) {
uint8_t buffer[1300]; // Recv buffer
uint32_t uiSSRC = 0xfeedbacc;

EmojiBase32 emoji((unsigned char*)&uiSSRC, 20);
shared_ptr<string> resultEmo = emoji.u32StringToUtf8(emoji.getEncoded());
cout << "Size: " << dec << resultEmo->size() << ", " << resultEmo->c_str() << endl;

Base32 b32((unsigned char*)&uiSSRC, 20);
cout << b32.getEncoded() << endl;

fprintf(stderr, "Config info: %s\n", getZrtpBuildInfo());

CtZrtpSession::initCache("testzid.dat"); // initialize cache file
Expand Down
4 changes: 1 addition & 3 deletions zrtp/ZrtpTextData.cpp
Expand Up @@ -18,11 +18,9 @@
/*
* Authors: Werner Dittmann <Werner.Dittmann@t-online.de>
*/
#include <stdint.h>
#include <libzrtpcpp/ZrtpConfigure.h>
// 1
// 1234567890123456
char clientId[] = "GNU ZRTP 4.2.2 "; // 16 chars max.
char clientId[] = "GNU ZRTP 4.5.0 "; // 16 chars max.
char zrtpVersion_11[] = "1.10"; // must be 4 chars
char zrtpVersion_12[] = "1.20"; // must be 4 chars
/**
Expand Down

0 comments on commit 59390df

Please sign in to comment.