How do I write a TCP app for AX22xx [closed] - c++

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am have brought a Development board AX22001. I want to write an TCP app server/client.
But I don't really know, where to write app and how to program it over.
Do anyone in here have got any experience with AX22001?
I hope you guys can help, I did try to write to AX22001 support but they are too slow answering my questions.

You know, there's a fairly comprehensive amount of information, demo code, manuals, APIs, and references on their website: http://www.asix.com.tw/products.php?op=pItemdetail&PItemID=106;72;104. My suggestion would be to start reading through it!

Related

Process to process remote communication [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I have 2 processes running on 2 different machines.
What is the best way to communicate between those to send instructions WITHOUT using any username/password?
Language : C++
There are many solutions with different pros and cons. Try googling for it.
Since you've not given any other requirements, the simplest way is via socket programming. Check out this https://www.geeksforgeeks.org/socket-programming-cc/ for some basic knowledge and http://www.cs.rpi.edu/~moorthy/Courses/os98/Pgms/socket.html for examples.

If I wanted to create a GUI for wget in c++.. where would I start? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Question is the title.
I'm sorry, I suppose I need to specify.
I'm not sure what commands or what code to use to actually link wget to a gui.
I have two weeks until classes start and I just want to Create something.
Maybe here and here. There are numerous widget toolkits for C++.
Since wget is not a HTTP library, but an application, calling this using system() or similar calls is disrecommended.
I advise you to use a HTTP C/C++ library.

Linux Kernel Implementation [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am implementing network layer to aggregate 2 network interface by dividing data to send them on 2 interfaces and combine it on the receiving end. I have achieved it in socket programming(c) but now I have to implement it on kernel in Ubuntu. I cant figure out where to start as i do not have any prior knowledge of kernel programing. Can anyone guide me about any helpful tutorials or demos so i can start working on it.
Have a look at network interface bonding.

How to make a MATLAB function to be run in html? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I've developed a MATLAB code that I think it is useful to be used by researchers. How can I embed it in a website to be used free?
It gets two integers and return a set of integers
Also it is possible to convert it to c++, If it helps.
Thanks
Submit your m-file(s) to Matlab Central File Exchange, this is the perfect place for it.

How to get network message in the application level? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
In my c++ application, I want to get the HTTP messages such like GET/200OK, and then parse them in to my own struct. How can I get them from the networking card in the run time?
You can try using libucyrl mentioned in this answer.
Also you can write your own TCP client/server application and read the data from sockets, then parse it the way you want it. In this case is better to familiarize first with the HTTP protocol.
I think some tutorials might be useful too, so here are a couple of links:
http://www.freeos.com/articles/4121/
http://www.jmarshall.com/easy/http/