ソースを参照

Merge pull request #132 from iftahbe/master

ISSUE-131 fix mistake with request max memory
tags/v1.0.0
Andrea Spacca 5年前
committed by GitHub
コミット
b347a4d998
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      server/server.go

+ 1
- 1
server/server.go ファイルの表示

@@ -59,7 +59,7 @@ import (
const SERVER_INFO = "transfer.sh"

// parse request with maximum memory of _24Kilobits
const _24K = (1 << 20) * 24
const _24K = (1 << 10) * 24

type OptionFn func(*Server)



読み込み中…
キャンセル
保存