In article <cam+xf6bdtr4hjg5z7jwojhwgig5e24zq2ujiy_nijsl60pz...@mail.gmail.com>, NONAKA Kimihiro <nona...@gmail.com> wrote: >Hi, > >2013/3/30 Christos Zoulas <chris...@netbsd.org>: > >> Module Name: src >> Committed By: christos >> Date: Sat Mar 30 01:05:49 UTC 2013 >> >> Modified Files: >> src/sys/net80211: ieee80211.h ieee80211_proto.h >> >> Log Message: >> EDCA and QOS additions from OpenBSD > >You have to add the following lines. It seems same as WME_AC_ *. > >----- > /* >+ * EDCA Access Categories. >+ */ >+enum ieee80211_edca_ac { >+ EDCA_AC_BK = 1, /* Background */ >+ EDCA_AC_BE = 0, /* Best Effort */ >+ EDCA_AC_VI = 2, /* Video */ >+ EDCA_AC_VO = 3 /* Voice */ >+}; >+#define EDCA_NUM_AC 4 >+ >----- > >WME_AC_ * >----- sys/net80211/ieee80211.h >#define WME_AC_BE 0 /* best effort */ >#define WME_AC_BK 1 /* background */ >#define WME_AC_VI 2 /* video */ >#define WME_AC_VO 3 /* voice */ >-----
They are there? I should gc the old one I guess. christos