int s = socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);
tRemoteAddr.sa_family = AF_INET;
tRemoteAddr.sa_data[0] = (port & 0xFF00) >> 8;
tRemoteAddr.sa_data[1] = (port & 0x00FF);
tRemoteAddr.sa_data[2] = 192;
tRemoteAddr.sa_data[3] = 168;
tRemoteAddr.sa_data[4] = 3;
tRemoteAddr.sa_data[5] = 24;
res = connect(s, &tRemoteAddr, sizeof(tRemoteAddr));
__delay_cycles(1000);
if(s != -1)
{
turnLedOn(1);
if (bind(s, &tRemoteAddr, sizeof(sockaddr))) {
}
}
char buf[150];
memset(buf, 0, 150);
memcpy(buf, "hello test", sizeof("hello test"));
__delay_cycles(2000);
send(s, buf, sizeof(buf), 0);
turnLedOn(3);
__delay_cycles(8000);
closesocket(s);
turnLedOn(4);
You should bind the socket as in ths code. Try this code or you can cahnge some parts of code.