arduino-libraries / ArduinoHttpClient

Arduino HTTP Client library
288 stars 172 forks source link

getters for ServerConnectionVars #34

Open Beerlesklopfer opened 7 years ago

Beerlesklopfer commented 7 years ago

Hallo to everyone,

I added to your code due to a need for my application dealing with the IoT Platform Cumulocity:

_/* G E T T E R S*/
inline const char* serverName() {
    return iServerName;
}

inline int serverPort() {
    return iServerPort;
}

inline IPAddress serverAddress() {
    return iServerAddress;
}_

Maybe it is useful to integrate to branch?

Joerg

sandeepmistry commented 6 years ago

@Beerlesklopfer yes, please submit a pull request for this.