2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00

stream: Add stream_run(), stream_run_wait() functions.

SSL, which will be added in an upcoming commit, requires some background
processing, which is best done in a "run" function in our architecture.
This commit adds stream_run() and stream_run_wait() and calls to them from
the places where they will be required.
This commit is contained in:
Ben Pfaff
2010-01-06 14:26:48 -08:00
parent e0668bd1d4
commit 539e96f623
7 changed files with 60 additions and 6 deletions

View File

@@ -90,6 +90,8 @@ struct stream_class tcp_stream_class = {
NULL, /* connect */
NULL, /* recv */
NULL, /* send */
NULL, /* run */
NULL, /* run_wait */
NULL, /* wait */
};