add rst status

This commit is contained in:
jackdaw 2016-11-30 13:54:29 +09:00
parent 1725a0f8cd
commit cf21565e03

View File

@ -6,7 +6,8 @@ package com.loafle.bridge.discoveryport.type;
public enum DirectionType {
Send("S"),
Recv("R"),
Timeout("T");
Timeout("T"),
Closed("C");
private String stringValue;
DirectionType(String string) {stringValue = string;}