| 9 | | Oscpack is simply a set of C++ classes for packing and unpacking OSC packets. |
|---|
| 10 | | Oscpack is not a networking library, or a framework for bulding OSC |
|---|
| 11 | | applications. Simple classes for UDP networking are included, but you are |
|---|
| 12 | | encouraged to use another networking framework. The library should also be |
|---|
| 13 | | easy to use for other transport methods (eg serial). |
|---|
| | 9 | Oscpack is simply a set of C++ classes for packing and unpacking OSC packets. |
|---|
| | 10 | Oscpack includes a minimal set of UDP networking classes for windows and posix |
|---|
| | 11 | which are sufficient for writing many OSC applications and servers, but you are |
|---|
| | 12 | encouraged to use another networking framework if it better suits your needs. |
|---|
| | 13 | Oscpack is not an OSC application framework, it doesn't include infrastructure for |
|---|
| | 14 | constructing or routing OSC namespaces, just classes for easily constructing, |
|---|
| | 15 | sending, receiving and parsing OSC packets. The library should also be easy to use |
|---|
| | 16 | for other transport methods (eg serial). |
|---|
| 26 | | OscReceivedElements -- classes for parsing a packet |
|---|
| 27 | | OscPrintRecievedElements -- iostream << operators for printing packet elements |
|---|
| 28 | | OscOutboundPacket -- a class for packing messages into a packet |
|---|
| 29 | | OscPacketListener -- base class for listening to OSC packets on a UdpSocket |
|---|
| 30 | | OscUnitTests -- unit test program for the OSC modules |
|---|
| 31 | | OscDump -- a program that prints received OSC packets |
|---|
| 32 | | OscSendTests -- examples of how to send messages |
|---|
| 33 | | OscReceiveTest -- example of how to receive the messages sent by OSCSendTests |
|---|
| | 29 | osc/OscReceivedElements -- classes for parsing a packet |
|---|
| | 30 | osc/OscPrintRecievedElements -- iostream << operators for printing packet elements |
|---|
| | 31 | osc/OscOutboundPacket -- a class for packing messages into a packet |
|---|
| | 32 | osc/OscPacketListener -- base class for listening to OSC packets on a UdpSocket |
|---|
| | 33 | osc/OscUnitTests -- unit test program for the OSC modules |
|---|
| | 34 | osc/OscDump -- a program that prints received OSC packets |
|---|
| | 35 | osc/OscSendTests -- examples of how to send messages |
|---|
| | 36 | osc/OscReceiveTest -- example of how to receive the messages sent by OSCSendTests |
|---|