Hi Tim, > > +enum obex_transport_format{ > > + OBEX_MT_STREAM , > > + OBEX_MT_SEQPACKET > > +}; > > + > > And more important, I have no idea why are you doing this anyway. Even > > with L2CAP this should run over SOCK_STREAM. > > Is that really so? I expect exposing L2CAP ERTM as a stream could break protocols above that expect datagram-boundary preservation (eg RTP). Or can break protocols that mandate that only one higher-layer packet exists in each L2CAP SDU. For these the socket needs to be packet based. > > So, my surprise is that ERTM is exposed as SOCK_STREAM. So I do have an idea why the patch mentions sequenced packet... you can do both for ERTM actually. You can create SOCK_SEQPACKET and have it negotiate ERTM. However you can not run SOCK_STREAM on a Basic Mode connection. But the real benefit for higher layer protocols is if you become a SOCK_STREAM. Because you are MTU free now. Using SOCK_SEQPACKET with ERTM or Basic Mode is not really much of a difference. Especially with OBEX that has its own MTU anyway in the first place has always been run on SOCK_STREAM so far, what is the different that you expect by running it of SOCK_SEQPACKET with ERTM? Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html