RC_TYPE http_client_set_remote_name(HTTP_CLIENT *p_self, const char* p)
{
	return tcp_set_remote_name(&p_self->super, p);
}
Beispiel #2
0
int http_set_remote_name(http_t *client, const char *name)
{
	ASSERT(client);
	return tcp_set_remote_name(&client->tcp, name);
}