{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

TCP/IP详解 卷3 T/TCP HTTP NNTP和UNIX域协议(英文版)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

TCP/IP详解 卷3 T/TCP HTTP NNTP和UNIX域协议(英文版)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

1. 网络专家W. Richard Stevens的传世之作。
2. TCP/IP领域的经典。
3. 任何TCP/IP领域技术人员不可或缺的案头书。
《TCP/IP详解》是已故网络专家、技术作家W. Richard Stevens的传世之作,内容详尽,被誉为TCP/IP领域的不朽名著。
本书是《TCP/IP详解》三卷本的第3卷,主要讲述高级协议,覆盖当今TCP/IP编程人员和网络管理员必须熟练掌握的T/TCP(TCP事务协议)、HTTP(超文本传送协议)、NNTP(网络新闻传送协议)和UNIX域协议。与前面两卷一样,本书有丰富的例子和实现的细节。
这一卷的前两部分内容要求读者对TCP/IP协议的工作原理有基本的了解。对TCP/IP协议不是很熟悉的读者先应阅读《TCP/IP详解》的第1卷,该书对TCP/IP协议族有比较透彻的讲述。这一卷中除第1章至第4章可以独立于《TCP/IP详解》的第2卷阅读外,其余各章要求读者对第2卷中提供的4.4BSD-Lite网络代码比较熟悉。
《TCP/IP详解》对于网络应用的开发人员、网络管理员以及任何想了解TCP/IP协议运行原理的人员来说,都是极好的参考书。无论是初学者还是功底深厚的网络领域高手,这套书都应是案头大作。
Content Description

本书是TCP/IP领域的经典之作!书中重点讲述高级协议,覆盖了当今TCP/IP编程人员和网络管理员必须熟练掌握的T/TCP(TCP事务协议)、HTTP(超文本传送协议)、NNTP(网络新闻传送协议)和UNIX域协议。与前面两卷一样,本书有丰富的例子和实现的细节。
Author Description

W. Richard Stevens,国际知名的UNIX和网络专家,备受赞誉的技术作家。他1951年2月5日出生于赞比亚,后随父母回到美国。中学时就读于弗吉尼亚菲什伯恩军事学校,1973年获得密歇根大学航空和航天工程学士学位。1975年至1982年,他在亚利桑那州图森市的基特峰国家天文台从事计算机编程工作,业余时间喜爱飞行运动,做过兼职飞行教练。这期间他分别在1978年和1982年获得亚利桑那大学系统工程硕士和博士学位。此后他去康涅狄格州纽黑文的健康系统国际公司任主管计算机服务的副总裁。1990年他回到图森,从事专业技术写作和咨询工作。他写下了多种经典的传世之作,包括《TCP/IP详解》(三卷)、《UNIX环境高级编程》和《UNIX网络编程》(两卷)。Stevens于1999年9月1日去世,年仅48岁。2000年他被国际机构USENIX追授“终身成就奖”。
Catalogue

Part 1. TCP for Transactions / TCP事务协议 1
Chapter 1. T/TCP Introduction / T/TCP概述 3
1.1 Introduction / 概述 3
1.2 UDP Client-Server / UDP客户-服务器 3
1.3 TCP Client-Server / TCP客户-服务器 9
1.4 T/TCP Client-Server / T/TCP客户-服务器 17
1.5 Test Network / 测试网络20
1.6 Timing Example / 计时示例21
1.7 Applications / 应用22
1.8 History / 历史24
1.9 Implementations / 实现26
1.10 Summary / 小结 28

Chapter 2. T/TCP Protocol / T/TCP协议 29
2.1 Introduction / 概述29
2.2 New TCP Options for T/TCP / T/TCP的新TCP选项 30
2.3 T/TCP Implementation Variables / T/TCP实现变量33
2.4 State Transition Diagram / 状态变迁图34
2.5 T/TCP Extended States / T/TCP的扩展状态 36
2.6 Summary / 小结 38

Chapter 3. T/TCP Examples / T/TCP 示例 39
3.1 Introduction / 概述 39
3.2 Client Reboot / 客户重新启动 40
3.3 Normal T/TCP Transaction / 常规的T/TCP事务 42
3.4 Server Receives Old Duplicate SYN / 服务器收到过时的重复SYN 43
3.5 Server Reboot / 服务器重新启动 44
3.6 Request or Reply Exceeds MSS / 请求或应答超出MSS 45
3.7 Backward Compatibility / 向后兼容性49
3.8 Summary / 小结 51

Chapter 4. T/TCP Protocol (Continued) / T/TCP协议(续) 53
4.1 Introduction / 概述 53
4.2 Client Port Numbers and TIME_WAIT State / 客户的端口号和TIME_WAIT状态 53
4.3 Purpose of the TIME_WAIT State / 设置TIME_WAIT状态的目的 56
4.4 TIME WAIT State Truncation / TIME_WAIT状态的截断 59
4.5 Avoiding the Three-Way Handshake with TAO / 利用TAO避免三次握手 62
4.6 Summary / 小结 68

Chapter 5. T/TCP Implementation: Socket Layer / T/TCP实现:套接字层69
5.1 Introduction / 概述69
5.2 Constants / 常量70
5.3 sosend Function / sosend函数70
5.4 Summary / 小结 72

Chapter 6.T/TCP Implementation: Routing Table / T / TCP实现:路由表 73
6.1 Introduction / 概述73
6.2 Code Introduction / 代码介绍74
6.3 radix_node_head Structure / radix_node_head结构75
6.4 rtentry Structure / rtentry结构75
6.5 rt_metrics Structure / rt_metrics结构76
6.6 in_inithead Function / in_inithead函数 76
6.7 in_addroute Function / in_addroute函数77
6.8 in_matroute Function / in_matroute函数78
6.9 in_clsroute Function / in_clsroute函数78
6.10 in_rtqtimo Function / in_rtqtimo函数79
6.11 in_rtqkill Function / in_rtqkill函数82
6.12 小结 85

Chapter 7. T/TCP Implementation: Protocol Control Blocks / T/TCP实现:协议控制块 87
7.1 Introduction / 概述 87
7.2 in_pcbladdr Function / in_pcbladdr函数88
7.3 in_pcbconnect Function / in_pcbconnect函数89
7.4 Summary / 小结 90

Chapter 8. T/TCP Implementation: TCP Overview / T/TCP实现:TCP概要 91
8.1 Introduction / 概述 91
8.2 Code Introduction / 代码介绍 91
8.3 TCP protosw Structure / TCP protosw结构92
8.4 TCP Control Block / TCP控制块93
8.5 tcp_init Function / tcp_init函数 94
8.6 tcp_slowtimo Function / tcp_slowtimo函数 94
8.7 Summary / 小结 95

Chapter 9. T/TCP Implementation: TCP Output / T/TCP实现:TCP输出 97
9.1 Introduction / 概述97
9.2 tcp_output Function / tcp_output函数 97
9.3 Summary / 小结 104

Chapter 10. T/TCP Implementation: TCP Functions / T/TCP实现:TCP函数 105
10.1 Introduction / 概述105
10.2 tcp_newtcpcb Function / tcp_newtcpcb函数105
10.3 tcp_rtlookup Function / tcp_rtlookup函数106
10.4 tcp_gettaocache Function / tcp_gettaocache函数108
10.5 Retransmission Timeout Calculations / 重传超时的计算108
10.6 tcp_close Function / tcp_close函数 112
10.7 tcp_msssend Function / tcp_msssend函数113
10.8 tcp_mssrcvd Function / tcp_mssrcvd函数114
10.9 tcp_dooptions Function / tcp_dooptions函数121
10.10 tcp_reass Function / tcp_reass函数122
10.11 Summary / 小结 124

Chapter 11.T/TCP Implementation: TCP Input / T/TCP实现:TCP输入 125
11.1 Introduction / 概述125
11.2 Preliminary Processing / 预处理125
11.3 Header Prediction / 首部预测129
11.4 Initiation of Passive Open / 被动打开的启动130
11.5 Initiation of Active Open / 主动打开的启动134
11.6 PAWS: Protection Against Wrapped Sequence Numbers / PAWS:防止序号重复141
11.7 ACK Processing / ACK处理142
11.8 Completion of Passive Opens and Simultaneous Opens / 完成被动打开和同时打开142
11.9 ACK Processing (Continued) / ACK处理(续) 143
11.10 Summary / 小结 147

Chapter 12. T/TCP Implementation: TCP User Requests / T/TCP实现:TCP用户请求 149
12.1 Introduction / 概述149
12.2 PRU_CONNECT Request / PRU_CONNECT请求149
12.3 tcp_connect Function / tcp_connect函数150
12.4 PRU_SEND and PRU_SEND_EOF Requests / PRU_SEND和PRU_SEND_EOF请求154
12.5 tcp_usrclosed Function / tcp_usrclosed函数155
12.6 tcp_sysctl Function / tcp_sysctl函数155
12.7 T/TCP Futures / T/TCP的前景156
12.8 Summary / 小结 158

Part 2. Additional TCP Applications / TCP的其他应用 159
Chapter 13. HTTP: Hypertext Transfer Protocol / HTTP:超文本传送协议161
13.1 Introduction / 概述161
13.2 Introduction to HTTP and HTML / HTTP和HTML概述162
13.3 HTTP Protocol / HTTP协议 165
13.4 An Example / 示例 170
13.5 HTTP Statistics / HTTP统计数据 172
13.6 Performance Problems / 性能问题173
13.7 Summary / 小结 175

Chapter 14. Packets Found on an HTTP Server / 在HTTP服务器上找到的分组177
14.1 Introduction / 概述177
14.2 Multiple HTTP Servers / 多个HTTP服务器180
14.3 Client SYN Interarrival Time / 客户SYN的到达间隔时间181
14.4 RTT Measurements / RTT的测量 185
14.5 1isten Backlog Queue / 1isten积压队列 187
14.6 Client SYN Options / 客户SYN选项 192
14.7 Client SYN Retransmissions / 客户SYN重传 195
14.8 Domain Names / 域名 196
14.9 Timing Out Persist Probes / 超时的持续探测196
14.10 Simulation of T/TCP Routing Table Size / T/TCP路由表大小的模拟 200
14.11 Mbuf Interaction / Mbuf交互202
14.12 TCP PCB Cache and Header Prediction / TCP的PCB高速缓存和首部预测 203
14.13 Summary / 小结 205

Chapter 15. NNTP: Network News Transfer Protocol / NNTP:网络新闻传送协议207
15.1 Introduction / 概述207
15.2 NNTP Protocol / NNTP协议209
15.3 A Simple News Client / 一个简单的新闻客户212
15.4 A More Sophisticated News Client / 一个复杂的新闻客户214
15.5 NNTP Statistics / NNTP的统计数据 215
15.6 Summary / 小结 216

Part 3. The Unix Domain Protocols / Unix域协议 219
Chapter 16. Unix Domain Protocols: Introduction / Unix域协议:概述221
16.1 Introduction / 概述221
16.2 Usage / 用途222
16.3 Performance / 性能 223
16.4 Coding Examples / 编码示例224
16.5 Summary / 小结 225

Chapter 17. Unix Domain Protocols: Implementation / Unix域协议:实现227
17.1 Introduction / 概述 227
17.2 Code Introduction / 代码介绍227
17.3 Unix domain and protosw Structures / Unix domain和protosw结构228
17.4 Unix Domain Socket Address Structures / Unix域套接字地址结构230
17.5 Unix Domain Protocol Control Blocks / Unix域协议控制块231
17.6 uipc_usrreq Function / uipc_usrreq函数233
17.7 PRU_ATTACH Request and unp_attach Function / PRU_ATTACH请求和unp_attach函数233
17.8 PRU_DETACH Request and unp_detach Function / PRU_DETACH请求和unp_detach函数236
17.9 PRU_BIND Request and unp_bind Function / PRU_BIND请求和unp_bind函数237
17.10 PRU_CONNECT Request and unp_connect Function / PRU_CONNECT请求和unp_connect函数240
17.11 PRU_CONNECT2 Request and unp_connect2 Function / PRU_CONNECT2请求和unp_connect2函数245
17.12 socketpair System Call / socketpair系统调用249
17.13 pipe System Call / pipe系统调用253
17.14 PRU_ACCEPT Request / PRU_ACCEPT请求253
17.15 PRU_DISCONNECT Request and unp_disconnect Function / PRU_DISCONNECT请求和unp_disconnect函数255
17.16 PRU_SHUTDOWN Request and unp_shutdown Function / PRU_SHUTDOWN请求和unp_shutdown函数257
17.17 PRU_ABORT Request and unp_drop Function / PRU_ABORT请求和unp_drop函数258
17.18 Miscellaneous Requests / 其他各种请求259
17.19 Summary / 小结 261

Chapter 18. Unix Domain Protocols: I/O and Descriptor Passing / Unix域协议:I/O和描述符传递263
18.1 Introduction /概述263
18.2 PRU_SEND and PRU_RCVD Requests / PRU_SEND和PRU_RCVD请求263
18.3 Descriptor Passing / 描述符传递269
18.4 unp_internalize Function / unp_internalize函数274
18.5 unp_externalize Function / unp_externalize函数276
18.6 unp_discard Function / unp_discard函数277
18.7 unp_dispose Function / unp_dispose函数278
18.8 unp_scan Function / unp_scan函数278
18.9 unp_gc Function / unp_gc函数280
18.10 unp_mark Function / unp_mark函数288
18.11 Performance (Revisited) / 性能(续)288
18.12 Summary / 小结 289

Appendix A. Measuring Network Times / 测量网络时间291
A.1 RTT Measurements Using Ping / 使用Ping进行RTT测量 292
A.2 Protocol Stack Measurements / 协议栈测量294
A.3 Latency and Bandwidth / 延迟和带宽 300

Appendix B. Coding Applications for T/TCP / 为T/TCP编写应用程序303
Bibliography / 参考文献309

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book