We create app A. start it from super user. It opens socket and waits for connections. Connection establishes. We want to let another, not forked, separately launched by super user process to take that established connection and be capable to send data over it not interrupting/reestablishing it. We create both A and B apps and we can implement any required logical algorithms into them both. How shall开发者_如何学Python our apps logic look like? and will Ancillary library be capable to help me with such task?
You can open a unix domain socket between the processes and pass file descriptors over it. See this site for an explanation and example:
http://www.lst.de/~okir/blackhats/node121.html
精彩评论