forked from el33th4x0r/crosstex-dbgen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiptps.xtx
2076 lines (1873 loc) · 59.1 KB
/
iptps.xtx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@include conferences-cs
@inproceedings{DBLP:conf/iptps/PetersonWS10,
author = {Ryan S. Peterson and
Bernard Wong and
Emin Gün Sirer},
title = {Blindfold: a system to "See no evil" in content discovery},
booktitle = iptps,
year = 2010,
pages = {1},
}
@inproceedings{DBLP:conf/iptps/YangZXDXD10,
author = {Zhi Yang and
Ben Y. Zhao and
Yuanjian Xing and
Song Ding and
Feng Xiao and
Yafei Dai},
title = {AmazingStore: available, low-cost online storage service using cloudlets},
booktitle = iptps,
year = 2010,
pages = {2},
}
@inproceedings{DBLP:conf/iptps/FengLL10,
author = {Yuan Feng and
Baochun Li and
Bo Li},
title = {Peer-to-peer bargaining in container-based datacenters},
booktitle = iptps,
year = 2010,
pages = {3},
}
@inproceedings{DBLP:conf/iptps/ShavittWW10,
author = {Yuval Shavitt and
Ela Weinsberg and
Udi Weinsberg},
title = {Estimating peer similarity using distance of shared files},
booktitle = iptps,
year = 2010,
pages = {4},
}
@inproceedings{DBLP:conf/iptps/LumezanuLHSB10,
author = {Cristian Lumezanu and
Dave Levin and
Bo Han and
Neil Spring and
Bobby Bhattacharjee},
title = {Don't love thy nearest neighbor},
booktitle = iptps,
year = 2010,
pages = {5},
}
@inproceedings{DBLP:conf/iptps/LopesF10,
author = {Pericles Lopes and
Ronaldo A. Ferreira},
title = {SplitQuest: controlled and exhaustive search in peer-to-peer networks},
booktitle = iptps,
year = 2010,
pages = {6},
}
@inproceedings{DBLP:conf/iptps/LeitaoRR10,
author = {João Leitão and
Robbert van Renesse and
Luís E. T. Rodrigues},
title = {Balancing gossip exchanges in networks with firewalls},
booktitle = iptps,
year = 2010,
pages = {7},
}
@inproceedings{DBLP:conf/iptps/ChowR10,
author = {Michael Chow and
Robbert van Renesse},
title = {A middleware for gossip protocols},
booktitle = iptps,
year = 2010,
pages = {8},
}
@inproceedings{DBLP:conf/iptps/MatosNOP10,
author = {Miguel Matos and
Ana Nunes and
Rui Oliveira and
José Pereira},
title = {StAN: exploiting shared interests without disclosing them in gossip-based publish/subscribe},
booktitle = iptps,
year = 2010,
pages = {9},
}
@inproceedings{DBLP:conf/iptps/MeulpolderDCWPES10,
author = {Michel Meulpolder and
Lucia D'Acunto and
Mihai Capota and
Maciej Wojciechowski and
Johan A. Pouwelse and
Dick H. J. Epema and
Henk J. Sips},
title = {Public and private {BitTorrent} communities: a measurement study},
booktitle = iptps,
year = 2010,
pages = {10},
}
@inproceedings{DBLP:conf/iptps/IliofotouSYR10,
author = {Marios Iliofotou and
Georgos Siganos and
Xiaoyuan Yang and
Pablo Rodriguez},
title = {Comparing {BitTorrent} clients in the wild: the case of download speed},
booktitle = iptps,
year = 2010,
pages = {11},
}
@inproceedings{DBLP:conf/iptps/DanC10,
author = {György Dán and
Niklas Carlsson},
title = {Power-law revisited: large scale measurement study of P2P content popularity},
booktitle = iptps,
year = 2010,
pages = {12},
}
@inproceedings{DBLP:conf/iptps/ChoffnesDMGBA10,
author = {David R. Choffnes and
Jordi Duch and
R. Dean Malmgren and
Roger Guimerà and
Fabián E. Bustamante and
Luis A. Nunes Amaral},
title = {Strange bedfellows: community identification in bittorrent},
booktitle = iptps,
year = 2010,
pages = {13},
}
@inproceedings{DBLP:conf/iptps/SandlerW09,
author = {Daniel Sandler and
Dan S. Wallach},
title = {Birds of a FETHR: open, decentralized micropublishing},
booktitle = iptps,
year = 2009,
pages = {1},
}
@inproceedings{DBLP:conf/iptps/VarvelloDB09,
author = {Matteo Varvello and
Christophe Diot and
Ernst Biersack},
title = {A Walkable Kademlia network for virtual worlds},
booktitle = iptps,
year = 2009,
pages = {2},
}
@inproceedings{DBLP:conf/iptps/BaiSYL09,
author = {Jiaqiang Bai and
Daryl Seah and
James Yong and
Ben Leong},
title = {Offloading {AI} for peer-to-peer games with dead reckoning},
booktitle = iptps,
year = 2009,
pages = {3},
}
@inproceedings{DBLP:conf/iptps/LiCCC09,
author = {Taoyu Li and
Minghua Chen and
Dah-Ming Chiu and
Maoke Chen},
title = {Queuing models for peer-to-peer systems},
booktitle = iptps,
year = 2009,
pages = {4},
}
@inproceedings{DBLP:conf/iptps/LiuLZLN09,
author = {Fangming Liu and
Bo Li and
Lili Zhong and
Baochun Li and
Di Niu},
title = {How P2P streaming systems scale over time under a flash crowd?},
booktitle = iptps,
year = 2009,
pages = {5},
}
@inproceedings{DBLP:conf/iptps/YangGCMR09,
author = {Xiaoyuan Yang and
Minas Gjoka and
Parminder Chhabra and
Athina Markopoulou and
Pablo Rodriguez},
title = {Kangaroo: video seeking in P2P systems},
booktitle = iptps,
year = 2009,
pages = {6},
}
@inproceedings{DBLP:conf/iptps/TerraceLLSF09,
author = {Jeff Terrace and
Harold Laidlaw and
Hao Eric Liu and
Sean Stern and
Michael J. Freedman},
title = {Bringing P2P to the web: security and privacy in the firecoral network},
booktitle = iptps,
year = 2009,
pages = {7},
}
@inproceedings{DBLP:conf/iptps/HoHLDP09,
author = {Sing Wang Ho and
Thom Haddow and
Jonathan Ledlie and
Moez Draief and
Peter Pietzuch},
title = {Deconstructing internet paths: an approach for {AS-level} detour route discovery},
booktitle = iptps,
year = 2009,
pages = {8},
}
@inproceedings{DBLP:conf/iptps/SnaderB09,
author = {Robin Snader and
Nikita Borisov},
title = {EigenSpeed: secure peer-to-peer bandwidth evaluation},
booktitle = iptps,
year = 2009,
pages = {9},
}
@inproceedings{DBLP:conf/iptps/DanC09,
author = {György Dán and
Niklas Carlsson},
title = {Dynamic swarm management for improved {BitTorrent} performance},
booktitle = iptps,
year = 2009,
pages = {10},
}
@inproceedings{DBLP:conf/iptps/MemonRGS09,
author = {Ghulam Memon and
Reza Rejaie and
Yang Guo and
Daniel Stutzbach},
title = {Large-scale monitoring of {DHT} traffic},
booktitle = iptps,
year = 2009,
pages = {11},
}
@inproceedings{DBLP:conf/iptps/WangLX09,
author = {Haiyang Wang and
Jiangchuan Liu and
Ke Xu},
title = {On the locality of {BitTorrent-based} video file swarming},
booktitle = iptps,
year = 2009,
pages = {12},
}
@inproceedings{DBLP:conf/iptps/PostKD08,
author = {Ansley Post and
Petr Kuznetsov and
Peter Druschel},
title = {PodBase: transparent storage management for personal devices},
booktitle = iptps,
year = 2008,
pages = {1},
}
@inproceedings{DBLP:conf/iptps/WongG08,
author = {Bernard Wong and
Saikat Guha},
title = {Quasar: a probabilistic publish-subscribe system for social networks},
booktitle = iptps,
year = 2008,
pages = {2},
}
@inproceedings{DBLP:conf/iptps/SovranLL08,
author = {Yair Sovran and
Alana Libonati and
Jinyang Li},
title = {Pass it on: social networks stymie censors},
booktitle = iptps,
year = 2008,
pages = {3},
}
@inproceedings{DBLP:conf/iptps/BoufkhadMMPV08,
author = {Yacine Boufkhad and
Fabien Mathieu and
Fabien de Montgolfier and
Diego Perino and
Laurent Viennot},
title = {Achievable catalog size in peer-to-peer video-on-demand systems},
booktitle = iptps,
year = 2008,
pages = {4},
}
@inproceedings{DBLP:conf/iptps/ChaRMC08,
author = {Meeyoung Cha and
Pablo Rodriguez and
Sue B. Moon and
Jon Crowcroft},
title = {On next-generation telco-managed P2P {TV} architectures},
booktitle = iptps,
year = 2008,
pages = {5},
}
@inproceedings{DBLP:conf/iptps/GarbackiEPS08,
author = {Pawel Garbacki and
Dick H. J. Epema and
Johan A. Pouwelse and
Maarten van Steen},
title = {Offloading servers with collaborative video on demand},
booktitle = iptps,
year = 2008,
pages = {6},
}
@inproceedings{DBLP:conf/iptps/DhungelWSR08,
author = {Prithula Dhungel and
Di Wu and
Brad Schonhorst and
Keith W. Ross},
title = {A measurement study of attacks on {BitTorrent} leechers},
booktitle = iptps,
year = 2008,
pages = {7},
}
@inproceedings{DBLP:conf/iptps/ChowGM08,
author = {Alix L. H. Chow and
Leana Golubchik and
Vishal Misra},
title = {Improving BitTorrent: a simple approach},
booktitle = iptps,
year = 2008,
pages = {8},
}
@inproceedings{DBLP:conf/iptps/MarciniakLLK08,
author = {Pawel Marciniak and
Nikitas Liogkas and
Arnaud Legout and
Eddie Kohler},
title = {Small is not always beautiful},
booktitle = iptps,
year = 2008,
pages = {9},
}
@inproceedings{DBLP:conf/iptps/ParkPK08,
author = {Kunwoo Park and
Sangheon Pack and
Taekyoung Kwon},
title = {Climber: an incentive-based resilient peer-to-peer system for live streaming services},
booktitle = iptps,
year = 2008,
pages = {10},
}
@inproceedings{DBLP:conf/iptps/Berndt08,
author = {Philipp Berndt},
title = {Using symmetric distributed processing for peer-to-peer {VoIP} conferencing in auditory virtual environments},
booktitle = iptps,
year = 2008,
pages = {11},
}
@inproceedings{DBLP:conf/iptps/RossiMM08,
author = {Dario Rossi and
Marco Mellia and
Michela Meo},
title = {A detailed measurement of skype network traffic},
booktitle = iptps,
year = 2008,
pages = {12},
}
@inproceedings{DBLP:conf/iptps/HaridasanR08,
author = {Maya Haridasan and
Robbert van Renesse},
title = {Gossip-based distribution estimation in peer-to-peer networks},
booktitle = iptps,
year = 2008,
pages = {13},
}
@inproceedings{DBLP:conf/iptps/DiKF08,
author = {Pengfei Di and
Kendy Kutzner and
Thomas Fuhrmann},
title = {Providing {KBR} service for multiple applications},
booktitle = iptps,
year = 2008,
pages = {14},
}
@inproceedings{DBLP:conf/iptps/SherrLB08,
author = {Micah Sherr and
Boon Thau Loo and
Matt Blaze},
title = {Veracity: a fully decentralized service for securing network coordinate systems},
booktitle = iptps,
year = 2008,
pages = {15},
}
@inproceedings{DBLP:conf/iptps/Dan08,
author = {György Dán},
title = {Cooperative caching and relaying strategies for peer-to-peer content delivery},
booktitle = iptps,
year = 2008,
pages = {16},
}
@inproceedings{DBLP:conf/iptps/McBrideS08,
author = {Benjamin McBride and
Caterina M. Scoglio},
title = {Constructing traffic-aware overlay topologies: a machine learning approach},
booktitle = iptps,
year = 2008,
pages = {17},
}
@inproceedings{DBLP:conf/iptps/FreedmanAJ08,
author = {Michael J. Freedman and
Christina Aperjis and
Ramesh Johari},
title = {Prices are right: managing resources and incentives in peer-assisted content distribution},
booktitle = iptps,
year = 2008,
pages = {18},
}
@inproceedings{DBLP:conf/iptps/GorlitzSS08,
author = {Olaf Görlitz and
Sergej Sizov and
Steffen Staab},
title = {PINTS: peer-to-peer infrastructure for tagging systems},
booktitle = iptps,
year = 2008,
pages = {19},
}
@inproceedings{DBLP:conf/iptps/SerenyiW08,
author = {Denis Serenyi and
Brian Witten},
title = {RapidUpdate: peer-assisted distribution of security content},
booktitle = iptps,
year = 2008,
pages = {20},
}
@inproceedings{DBLP:conf/iptps/SteeleVF08,
author = {Tyler Steele and
Vivek Vishnumurthy and
Paul Francis},
title = {A parameter-free load balancing mechanism for P2P networks},
booktitle = iptps,
year = 2008,
pages = {21},
}
@inproceedings{DBLP:conf/iptps/AwerbuchS07,
author = {Baruch Awerbuch and
Christian Scheideler},
title = {Towards Scalable and Robust Overlay Networks},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/ChengLZJ07,
author = {Bin Cheng and
Xuezheng Liu and
Zheng Zhang and
Hai Jin},
title = {A Measurement Study of a {Peer-to-Peer} {Video-on-Demand} System},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/DunnGL07,
author = {Richard J. Dunn and
Steven D. Gribble and
Henry M. Levy},
title = {The Importance of History in a Media Delivery System},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/FengD07,
author = {Qinyuan Feng and
Yafei Dai},
title = {LIP: A Lifetime and Popularity Based Ranking Approach to Filter out Fake Files in P2P File Sharing Systems},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/FreedmanN07,
author = {Michael J. Freedman and
Antonio Nicolosi},
title = {Efficient Private Techniques for Verifying Social Proximity},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/FreitasRRFR07,
author = {Filipe Freitas and
Rodrigo Rodrigues and
Carlos Ribeiro and
Paulo Ferreira and
Luís E. T. Rodrigues},
title = {Verme: Worm Containment in {Peer-to-Peer} Overlays},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/GishST07,
author = {Adam Shaked Gish and
Yuval Shavitt and
Tomer Tankel},
title = {Geographical Statistics and Characteristics of P2P Query Strings},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/HuangLR07,
author = {Cheng Huang and
Jin Li and
Keith W. Ross},
title = {{Peer-Assisted} VoD: Making Internet Video Distribution Cheap},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/KatoK07,
author = {Daishi Kato and
Toshiyuki Kamiya},
title = {Evaluating {DHT} Implementations in Complex Environments by Network Emulator},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/KlemmBKA07,
author = {Fabius Klemm and
Jean-Yves Le Boudec and
Dejan Kostic and
Karl Aberer},
title = {Improving the Throughput of Distributed Hash Tables Using {Congestion-Aware} Routing},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/LedlieMSP07,
author = {Jonathan Ledlie and
Michael Mitzenmacher and
Margo I. Seltzer and
Peter Pietzuch},
title = {Wired Geometric Routing},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/OztunaliRS07,
author = {Sebnem Öztunali and
Steffen Rusitschka and
Alan Southall},
title = {Multilayer Gnutella - P2P Resource Sharing with an Efficient Flexible {Multi-Keyword} Search Facility},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/PangUL07,
author = {Jeffrey Pang and
Frank Uyeda and
Jacob R. Lorch},
title = {Scaling {Peer-to-Peer} Games in {Low-Bandwidth} Environments},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/ShenWXZZ07,
author = {Guobin Shen and
Ye Wang and
Yongqiang Xiong and
Ben Y. Zhao and
Zhi-Li Zhang},
title = {HPTP: Relieving the Tension between {ISPs} and P2P},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/SirivianosPCY07,
author = {Michael Sirivianos and
Jong Han Park and
Rex Chen and
Xiaowei Yang},
title = {Free-riding in {BitTorrent} Networks with the Large View Exploit},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/SteinerBE07,
author = {Moritz Steiner and
Ernst W. Biersack and
Taoufik En-Najjary},
title = {Actively Monitoring Peers in {KAD}},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/StriblingSKM07,
author = {Jeremy Stribling and
Emil Sit and
M. Frans Kaashoek and
Robert Morris},
title = {Don't Give Up on Distributed File Systems},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/TianD07,
author = {Jing Tian and
Yafei Dai},
title = {Understanding the Dynamic of {Peer-to-Peer} Systems},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/WangYPR07,
author = {Jiajun Wang and
Chuohao Yeo and
Vinod M. Prabhakaran and
Kannan Ramchandran},
title = {On the Role of Helpers in {Peer-to-Peer} File Download Systems: Design, Analysis and Simulation},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/XieY07,
author = {Haiyong Xie and
Yang Richard Yang},
title = {A Measurement-based Study of the Skype {Peer-to-Peer} {VoIP} Performance},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/ZahariaCSK07,
author = {Matei A. Zaharia and
Amit Chandel and
Stefan Saroiu and
Srinivasan Keshav},
title = {Finding Content in {File-Sharing} Networks When You Can't Even Spell},
booktitle = iptps,
year = 2007,
}
@inproceedings{DBLP:conf/iptps/BenderMTWZ06,
author = {Matthias Bender and
Sebastian Michel and
Peter Triantafillou and
Gerhard Weikum and
Christian Zimmer},
title = {P2P Content Search: Give the Web Back to the People},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/ChenL06,
author = {Wei Chen and
Xuezheng Liu},
title = {Enforcing Routing Consistency in Structured {Peer-to-Peer} Overlays: Should We and Could We?},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/ChunWWK06,
author = {Byung-Gon Chun and
Peter Wu and
Hakim Weatherspoon and
John Kubiatowicz},
title = {ChunkCast: An Anycast Service for Large Content Distribution},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/DouceurH06,
author = {John R. Douceur and
Jon Howell},
title = {Byzantine Fault Isolation in the Farsite Distributed File System},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/FordSLRKM06,
author = {Bryan Ford and
Jacob Strauss and
Chris Lesniewski-Laas and
Sean C. Rhea and
M. Frans Kaashoek and
Robert Morris},
title = {{User-Relative} Names for Globally Connected Personal Devices},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/FreedmanSMS06,
author = {Michael J. Freedman and
Ion Stoica and
David Mazières and
Scott Shenker},
title = {Group Therapy for Systems: Using Link Attestations to Manage Failures},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/GkantsidisMR06,
author = {Christos Gkantsidis and
John Miller and
Pablo Rodriguez},
title = {Anatomy of a P2P Content Distribution system with Network Coding},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/GuhaDJ06,
author = {Saikat Guha and
Neil Daswani and
Ravi Jain},
title = {An Experimental Study of the Skype {Peer-to-Peer} {VoIP} System},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/HaeberlenMPD06,
author = {Andreas Haeberlen and
Alan Mislove and
Ansley Post and
Peter Druschel},
title = {Fallacies in Evaluating Decentralized Systems},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/LeeCCSG06,
author = {Uichin Lee and
Min Choi and
Junghoo Cho and
M. Y. Sanadidi and
Mario Gerla},
title = {Understanding Pollution Dynamics in P2P File Sharing},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/LevinSB06,
author = {Dave Levin and
Rob Sherwood and
Bobby Bhattacharjee},
title = {Fair File Swarming with {FOX}},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/LiD06,
author = {Jinyang Li and
Frank Dabek},
title = {F2F: Reliable Storage in Open Networks},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/LianPYZDL06,
author = {Qiao Lian and
Yu Peng and
Mao Yang and
Zheng Zhang and
Yafei Dai and
Xiaoming Li},
title = {Robust Incentives via Multi-level Tit-for-tat},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/LiogkasNKZ06,
author = {Nikitas Liogkas and
Robert Nelson and
Eddie Kohler and
Lixia Zhang},
title = {Exploiting {BitTorrent} For Fun},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/MoscibrodaSW06,
author = {Thomas Moscibroda and
Stefan Schmid and
Roger Wattenhofer},
title = {On the Topologies Formed by Selfish Peers},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/PouwelseGWBYIERSS06,
author = {Johan A. Pouwelse and
Pawel Garbacki and
Jun Wang and
Arno Bakker and
Jie Yang and
Alexandru Iosup and
Dick H. J. Epema and
Marcel J. T. Reinders and
Maarten van Steen and
Henk J. Sips},
title = {Tribler: A {Social-Based} {Peer-to-Peer} System},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/SitHDCWMKK06,
author = {Emil Sit and
Andreas Haeberlen and
Frank Dabek and
Byung-Gon Chun and
Hakim Weatherspoon and
Robert Morris and
M. Frans Kaashoek and
John Kubiatowicz},
title = {Proactive Replication for Data Durability},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/SwamynathanZA06,
author = {Gayatri Swamynathan and
Ben Y. Zhao and
Kevin C. Almeroth},
title = {Exploring the Feasibility of Proactive Reputations},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/TatiV06,
author = {Kiran Tati and
Geoffrey M. Voelker},
title = {On Object Maintenance in {Peer-to-Peer} Systems},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/VenkataramanF06,
author = {Vidhyashankar Venkataraman and
Paul Francis},
title = {Chunkyspread: Multi-tree Unstructured {Peer-to-Peer} Multicast},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/VoulgarisRKS06,
author = {Spyros Voulgaris and
Etienne Riviere and
Anne-Marie Kermarrec and
Maarten van Steen},
title = {Sub-2-Sub: {Self-Organizing} {Content-Based} Publish Subscribe for Dynamic Large Scale Collaborative Networks},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/ZahariaK06,
author = {Matei A. Zaharia and
Srinivasan Keshav},
title = {Gossip-based Search Selection in Hybrid {Peer-to-Peer} Networks},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/ZhengSLS06,
author = {Changxi Zheng and
Guobin Shen and
Shipeng Li and
Scott Shenker},
title = {Distributed Segment Tree: Support of Range Query and Cover Query over {DHT}},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/ZhongS06,
author = {Ming Zhong and
Kai Shen},
title = {{Popularity-Biased} Random Walks for {Peer-to-Peer} Search under the {Square-Root} Principle},
booktitle = iptps,
year = 2006,
}
@inproceedings{DBLP:conf/iptps/BalakrishnanHLLRRSVVWWZ05,
author = {Mahesh Balakrishnan and
Maya Haridasan and
Prakash Linga and
Hongzhou Liu and
Venugopalan Ramasubramanian and
Sean C. Rhea and
Manpreet Singh and
Vidhyashankar Venkatraman and
Vivek Vishnumurthy and
Kevin Walsh and
Bernard Wong and
Ming Zhong},
title = {Workshop Report},
booktitle = iptps,
year = 2005,
pages = {1-12},
}
@inproceedings{DBLP:conf/iptps/KuhnSW05,
author = {Fabian Kuhn and
Stefan Schmid and
Roger Wattenhofer},
title = {A Self-repairing {Peer-to-Peer} System Resilient to Dynamic Adversarial Churn},
booktitle = iptps,
year = 2005,
pages = {13-23},
}
@inproceedings{DBLP:conf/iptps/ZhouZMICC05,
author = {Lidong Zhou and
Lintao Zhang and
Frank McSherry and
Nicole Immorlica and
Manuel Costa and
Steve Chien},
title = {A First Look at {Peer-to-Peer} Worms: Threats and Defenses},
booktitle = iptps,
year = 2005,
pages = {24-35},
}
@inproceedings{DBLP:conf/iptps/NielsonCW05,
author = {Seth James Nielson and
Scott A. Crosby and
Dan S. Wallach},
title = {A Taxonomy of Rational Attacks},
booktitle = iptps,
year = 2005,
pages = {36-46},
}
@inproceedings{DBLP:conf/iptps/ZhangKW05,
author = {Chi Zhang and
Arvind Krishnamurthy and
Randolph Y. Wang},
title = {Brushwood: Distributed Trees in {Peer-to-Peer} Systems},
booktitle = iptps,
year = 2005,
pages = {47-57},
}
@inproceedings{DBLP:conf/iptps/ClementsPK05,
author = {Austin T. Clements and
Dan R. K. Ports and
David R. Karger},
title = {Arpeggio: Metadata Searching and Content Sharing with Chord},
booktitle = iptps,
year = 2005,
pages = {58-68},
}
@inproceedings{DBLP:conf/iptps/StriblingCLKKMS05,
author = {Jeremy Stribling and
Isaac G. Councill and
Jinyang Li and
M. Frans Kaashoek and
David R. Karger and
Robert Morris and
Scott Shenker},
title = {OverCite: A Cooperative Digital Research Library},
booktitle = iptps,
year = 2005,
pages = {69-79},
}
@inproceedings{DBLP:conf/iptps/PadmanabhanRP05,
author = {Venkata N. Padmanabhan and
Sriram Ramabhadran and
Jitendra Padhye},