Exemple #1
0
int tcp_get_remote_timeout(tcp_sock_t *p_self, int *p)
{
	if (p_self == NULL) {
		return RC_INVALID_POINTER;
	}

	return ip_get_remote_timeout(&p_self->super, p);
}
Exemple #2
0
int tcp_get_remote_timeout(tcp_sock_t *tcp, int *p)
{
	ASSERT(tcp);

	return ip_get_remote_timeout(&tcp->ip, p);
}