private OFFeaturesReply createOFFeaturesReply(DatapathId datapathId) {
   OFFeaturesReply fr =
       factory
           .buildFeaturesReply()
           .setXid(0)
           .setDatapathId(datapathId)
           .setPorts(ImmutableList.<OFPortDesc>of())
           .build();
   return fr;
 }