Search found 8 matches

by MrSteel
Thu Aug 28, 2014 6:24 am
Forum: NetBurner Software
Topic: SBL2e TCP connect and TCP write problems
Replies: 1
Views: 1800

SBL2e TCP connect and TCP write problems

Hi,

I have problems with my SBL2e module.
- When I am trying to connect to server I have to connect multiple times for connection to success.
- The bigger problem is that when the connection is up sbl2e module transmuting tcp bursts from different source ports not the same all the time.

My ...
by MrSteel
Wed Sep 04, 2013 1:24 am
Forum: NetBurner Software
Topic: TCP burst to hostname
Replies: 11
Views: 7169

Re: TCP burst to hostname

Hi,

Now DNS works! I need to call for IP twice. First time always fail but second time I get IP. I don't know whay!

Best regards,
by MrSteel
Tue Sep 03, 2013 7:09 am
Forum: NetBurner Software
Topic: TCP burst to hostname
Replies: 11
Views: 7169

Re: TCP burst to hostname

Hi,

I got problems with DNS again! I cant get IP addres from hostname!

My network configuration:

IP: 192.168.1.254
255.255.255.0
192.168.1.1.
192.168.1.10 // DNS server

code:



#include <dns.h>

const char * hostName="www.google.com";
IPADDR Address_of_host = 0;

if(GetHostByName ...
by MrSteel
Thu Jul 04, 2013 4:51 am
Forum: NetBurner Software
Topic: TCP burst to hostname
Replies: 11
Views: 7169

Re: TCP burst to hostname

Hi,

Now the communication is working. There was bug on server!

Thank you for the help.
by MrSteel
Mon Jul 01, 2013 12:58 am
Forum: NetBurner Software
Topic: TCP burst to hostname
Replies: 11
Views: 7169

Re: TCP burst to hostname

Hi,

Any solution on my question ?

Best regards,
by MrSteel
Fri Jun 28, 2013 4:39 am
Forum: NetBurner Software
Topic: TCP burst to hostname
Replies: 11
Views: 7169

Re: TCP burst to hostname

Hi,

I am using static and now I got DNS figure it out. Now is working. Thank you for the help.

But still I got one question more. I want to send data to server trough TCP communication. But there is one trick. The server is listening for data but not answering. So if I use TCP Client example I got ...
by MrSteel
Thu Jun 27, 2013 11:51 am
Forum: NetBurner Software
Topic: TCP burst to hostname
Replies: 11
Views: 7169

Re: TCP burst to hostname

My code:


const char * AppName = "Test";
const char * hostName= "test.domain.com";

void UserMain(void *pd)
{
SimpleUart(0,SystemBaud); // Initialize debug UART
assign_stdio(0); // Use UART 0 for STDIO

InitializeStack(); // Initialize TCP stack
EnableAutoUpdate(); // Enable network downloads ...
by MrSteel
Thu Jun 27, 2013 11:06 am
Forum: NetBurner Software
Topic: TCP burst to hostname
Replies: 11
Views: 7169

TCP burst to hostname

Hi,

I need help with SBL2e TCP communication. For a first time I used TCP client example to send some test string to server. Everything is working good but I need to send TCP burst to hostname not directly to IP address. Is this possible ?

Can you send TCP data to some hostname.com:1000 ? Is any ...