I am working on implementing a connection between two computers. These two computers need to communicate using an OSI TP4 connection (Mac-Address to Mac-Address). I am using a Fedora 11 Linux system. I'm trying to use C/C++ and would prefer to stay in those, though if there's no solution using them, I can be slightly flexible with this.
The second computer is already written, and I do not need to do anything with it; I just need to write code for my end in order to communicate with it. I've been searching around online trying to find either information on how to do this sort of programming or an off-the-shelf library that handles this communication, but have thus far come up empty handed.
My primary experience is with basic TCP/IP programming using the standard C libraries - however, I have no idea if I can use these for this.
I will be using the ISO 8473 Connectionless protocol for layer 3 and the ISO 8073 Class 4 model for layer 4.
Is there any information on this on the net? I can't seem to find any tutorial that explains how to do this, or any sort of example code. Again, if there's a purchasable system, that's fine too - I just need to know where I can get information on this topic.
I'm sorry if any of this is a little vague - I've never worked with stuff this low-level before and it's all pretty confusing to me at the moment.