标签:http io os ar for sp strong 数据 on
It‘s easy enough to send text data across the network, you‘re finding, but what happens if you want to send some "binary" data like ints or floats? It turns out you have a few options.
ssize_t send(int sockfd, const void *buf, size_t len, int flags);)
Sneak preview! Tonight only!
[Curtain raises]
Beej says, "I prefer Method Three, above!"
[THE END]
(Before I begin this section in earnest,(认真的,诚挚的;正正经经)
I should tell you that there are libraries out there for doing this, and rolling your own and remaining portable and error-free is quite a challenge. So hunt around and do your homework before deciding to implement this stuff yourself. I include the information here for those curious about how things like this work.)
Actually all the methods, above, have their drawbacks and advantages, but, like I said, in general, I prefer the third method. First, though, let‘s talk about some of the drawbacks and advantages to the other two.
The first method, encoding the numbers as text before sending, has the advantage that you can easily print and read the data that‘s coming over the wire. Sometimes a human-readable protocol is excellent to use in a non-bandwidth-intensive situation, such as with Internet Relay Chat (IRC). However, it has the disadvantage that it is slow to convert, and the results almost always take up more space than the original number!
Method two: passing the raw data. This one is quite easy (but dangerous!): just take a pointer to the data to send, and call send with it.
标签:http io os ar for sp strong 数据 on
原文地址:http://www.cnblogs.com/youxin/p/4064508.html