Re: [nox-dev] Debugging call for help: Assertion '_M_ptr != 0'

2011-09-23 Thread Murphy McCauley
For clarification of my earlier post: The race condition concerns tx_buf in lib/openflow.cc. If Openflow_connection::send_packet() is called by one thread at a time, tx_buf is always checked (via tx_buf.get()) to see if it's empty before it's sent, after which it's cleared (tx_buf.reset()).

[nox-dev] Getting dl_src, nw_src

2011-09-23 Thread Min-Hyup KANG
Hi All,I would like to get dl_src, nw_src in void lavi_hostflow::send_flow_list(const Flow flow, etc)So, I am printing some Flow values.For example, I used print function to get dl_src, nw_src.void lavi_hostflow::send_flow_list(const Flow flow, const network::route rte,

Re: [nox-dev] Getting dl_src, nw_src

2011-09-23 Thread kk yap
Hi, nw_src and nw_dst are 32-bit unsigned integers , i.e., binary values of the IP address. This is how ofp_match is defined in OpenFlow. It might help to read the spec for the exact definition. Regards KK 2011/9/23 Min-Hyup KANG kang-min-h...@hanmail.net Hi All, I would like to get