lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-users] Sending out TCP-Data as integer type


From: Firedog I.
Subject: [lwip-users] Sending out TCP-Data as integer type
Date: Wed, 5 Dec 2012 15:38:11 +0100

Hi everyone,

 

I got a little problem over here. I can send simple TCP-Data like string and char, but I can’t send data as integer type. I’m using lwIP v1.36 with RAW API.

 

Example:

 

/*Connection to Client established…*/

int data = "" //or int data = "">

tcp_write(pcb, data, 1, 1);

tcp_output(pcb);

 

When sending this Packet out, I receive a “00” as data in Wireshark.

 

I’ve tried sending out the equal ASCII-char to 255, a “ÿ“ (see extended ASCII), and this one works. When sending out this char, Wireshark shows a TCP-Packet with 1 byte length and a "ff" as data. That’s exactly what I want, but I don’t want to convert integer vars into extended ascii and then send the converted data out.

 

Any suggestions how to solve the problem?

Thanks.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]