mirror of
https://github.com/MariaDB/server.git
synced 2025-08-29 00:08:14 +03:00
Merge willster.(none):/home/stewart/Documents/MySQL/5.0/bug25487
into willster.(none):/home/stewart/Documents/MySQL/5.1/bug25567
This commit is contained in:
@@ -23,6 +23,7 @@ class SocketClient
|
||||
{
|
||||
NDB_SOCKET_TYPE m_sockfd;
|
||||
struct sockaddr_in m_servaddr;
|
||||
unsigned int m_connect_timeout_sec;
|
||||
unsigned short m_port;
|
||||
char *m_server_name;
|
||||
SocketAuthenticator *m_auth;
|
||||
@@ -34,6 +35,9 @@ public:
|
||||
m_port = port;
|
||||
m_servaddr.sin_port = htons(m_port);
|
||||
};
|
||||
void set_connect_timeout(unsigned int s) {
|
||||
m_connect_timeout_sec= s;
|
||||
}
|
||||
unsigned short get_port() { return m_port; };
|
||||
char *get_server_name() { return m_server_name; };
|
||||
int bind(const char* toaddress, unsigned short toport);
|
||||
|
Reference in New Issue
Block a user