projects
/
IRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
189cce3
)
forgot file
author
bdemsky
<bdemsky>
Mon, 16 Apr 2007 08:46:48 +0000
(08:46 +0000)
committer
bdemsky
<bdemsky>
Mon, 16 Apr 2007 08:46:48 +0000
(08:46 +0000)
Robust/src/Benchmarks/Chat/Message.java
[new file with mode: 0644]
patch
|
blob
diff --git a/Robust/src/Benchmarks/Chat/Message.java
b/Robust/src/Benchmarks/Chat/Message.java
new file mode 100644
(file)
index 0000000..
92db626
--- /dev/null
+++ b/
Robust/src/Benchmarks/Chat/Message.java
@@ -0,0
+1,12
@@
+public class Message {
+ flag Sent;
+ ChatSocket cs;
+ byte buffer[];
+ int length;
+
+ public Message(byte[] b, int l, ChatSocket cs) {
+ this.cs=cs;
+ this.buffer=b;
+ this.length=l;
+ }
+}