tags:

views:

38

answers:

1

I'm designing/developing a UDP server application and plan to use boost. What are the mutable buffer objects for and what advantage is it over an standard char array?

A: 

have you read the asio buffer documentation? It's fairly complete and describes the mutable and non-mutable buffers in great detail.

Sam Miller