What is the best, most secure way to connect to a server such as a mysql server, from within a program that’s source code will be released? I’m trying to keep from just giving out an ip address. Sorry if this is a bad or simple question, I am really new to network centered programming.
Share
You can have a file that holds that info and then the program just reads from there, or you can have that info in a source code file that you include in the main program. Just don’t share them with the rest of the source code and you’re set 😉