Communication between C++ server and Python app

Chris Angelico rosuav at gmail.com
Sun Apr 29 07:08:32 EDT 2012


On Sun, Apr 29, 2012 at 4:24 PM, Cameron Simpson <cs at zip.com.au> wrote:
> On 29Apr2012 11:42, Chris Angelico <rosuav at gmail.com> wrote:
> | Personally, I would recommend a TCP socket, because that allows the
> | flexibility of splitting across multiple computers.
>
> And the pain of ensuring security, if you're in an open network.

You have that with all IPC. You can always bind to 127.0.0.1 or ::1 to
stop other hosts from connecting; and then it's minimal change to open
it up.

ChrisA



More information about the Python-list mailing list