1# encoding: utf-8
2"""
3direction.py
4
5Created by Thomas Mangin on 2010-01-15.
6Copyright (c) 2009-2017 Exa Networks. All rights reserved.
7License: 3-clause BSD. (See the COPYRIGHT file)
8"""
9
10# =================================================================== Direction
11#
12
13
14class OUT(object):
15    UNSET = 0x00
16    ANNOUNCE = 0x01
17    WITHDRAW = 0x02
18
19
20class IN(object):
21    UNSET = 0x00
22    ANNOUNCED = 0x01
23    WITHDRAWN = 0x02
24