YiannisBourkelis / Andama-Remote-Desktop

Andama is an open source remote desktop software, with client side encryption and privacy in mind
GNU General Public License v3.0
59 stars 46 forks source link

Host settings #37

Open hartois opened 5 years ago

hartois commented 5 years ago

In clientsocket.cpp, clientserver.cpp have hardcoded

SERVER = gethostbyname("mailgate.filoxeni.com");

It may be worth replacing them with the use of constants from shared_constants.h ?

YiannisBourkelis commented 5 years ago

@hartois better leave it there at the moment mainly for testing purposes to be close to the place we use it. SERVER is not shared across multiple projects. It is used only on a Andama client, not the proxy. shared_constants.h is the place for constants used by both Andama and AndamaProxy

hartois commented 5 years ago

@YiannisBourkelis It is not comfortable. When updating the source you need to merge the configuration - this is not correct.

YiannisBourkelis commented 5 years ago

@hartois what do you suggest?