1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-09 06:44:30 -04:00
v2fly/app/proxyman/mux/writer.go

75 lines
1.3 KiB
Go
Raw Normal View History

2017-02-07 15:11:47 -05:00
package mux
2017-03-26 19:47:01 -04:00
import (
"v2ray.com/core/common/buf"
2017-03-31 18:53:01 -04:00
"v2ray.com/core/common/net"
2017-03-26 19:47:01 -04:00
"v2ray.com/core/common/serial"
)
2017-02-07 15:11:47 -05:00
2017-04-02 07:43:24 -04:00
type Writer struct {
2017-03-31 18:53:01 -04:00
id uint16
dest net.Destination
writer buf.Writer
followup bool
2017-02-07 15:11:47 -05:00
}
2017-04-02 07:43:24 -04:00
func NewWriter(id uint16, dest net.Destination, writer buf.Writer) *Writer {
return &Writer{
2017-04-02 03:48:30 -04:00
id: id,
dest: dest,
writer: writer,
}
}
2017-04-03 06:55:46 -04:00
func NewResponseWriter(id uint16, writer buf.Writer) *Writer {
return &Writer{
id: id,
writer: writer,
followup: true,
}
}
2017-04-15 15:07:23 -04:00
func (w *Writer) Write(mb buf.MultiBuffer) error {
2017-03-31 18:53:01 -04:00
meta := FrameMetadata{
SessionID: w.id,
Target: w.dest,
}
if w.followup {
meta.SessionStatus = SessionStatusKeep
} else {
w.followup = true
meta.SessionStatus = SessionStatusNew
2017-02-07 15:11:47 -05:00
}
2017-04-15 15:07:23 -04:00
if mb.Len() > 0 {
2017-03-31 18:53:01 -04:00
meta.Option.Add(OptionData)
}
2017-02-07 15:11:47 -05:00
2017-03-31 18:53:01 -04:00
frame := buf.New()
frame.AppendSupplier(meta.AsSupplier())
2017-04-15 15:07:23 -04:00
mb2 := buf.NewMultiBuffer()
mb2.Append(frame)
2017-03-31 18:53:01 -04:00
2017-04-15 15:07:23 -04:00
if mb.Len() > 0 {
frame.AppendSupplier(serial.WriteUint16(uint16(mb.Len())))
mb2.AppendMulti(mb)
2017-02-07 15:11:47 -05:00
}
2017-04-15 15:07:23 -04:00
return w.writer.Write(mb2)
2017-03-31 18:53:01 -04:00
}
2017-02-07 15:11:47 -05:00
2017-04-02 07:43:24 -04:00
func (w *Writer) Close() {
2017-03-31 18:53:01 -04:00
meta := FrameMetadata{
SessionID: w.id,
SessionStatus: SessionStatusEnd,
2017-02-07 15:11:47 -05:00
}
2017-03-31 18:53:01 -04:00
frame := buf.New()
frame.AppendSupplier(meta.AsSupplier())
2017-04-15 15:07:23 -04:00
mb := buf.NewMultiBuffer()
mb.Append(frame)
w.writer.Write(mb)
2017-02-07 15:11:47 -05:00
}