flow/actor: fix eop direction

This commit is contained in:
Florent Kermarrec 2014-09-22 18:09:30 +02:00 committed by Sebastien Bourdeauducq
parent 66054af7bb
commit a03570ccca
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class _Endpoint(Record):
if packetized:
endpoint_layout += [
("sop", 1, DIR_M_TO_S),
("eop", 1, DIR_S_TO_M)
("eop", 1, DIR_M_TO_S)
]
Record.__init__(self, endpoint_layout)