Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 119 of file winsock.c.
Referenced by gethostbyname().
{ AUTODIAL_ADDR AutodialAdddress; AUTODIAL_CONN AutodialConnection; /* Make sure there actually is a name */ if (!(Name) || !strlen(Name)) return; /* Setup the Address */ AutodialAdddress.Family = AutoDialIpHost; strcpy(AutodialAdddress.HostName, Name); /* Setup the new connection */ AutodialConnection.Family = ConnectionIp; AutodialConnection.Ip4Address = Address; AcsHlpNoteNewConnection(&AutodialAdddress, &AutodialConnection); }