搜索
缓存时间22 现在时间22 缓存数据 感谢生命中的那些相逢,感谢那些身边和远方的朋友。我很珍惜有你们的日子,陪着我一路前行!晚安!
楼主: novsunyc

看有人说clubsim免流可以用百度直连落地 [实体卡]

[复制链接]
发表于 6 天前 来自手机 | 显示全部楼层
novsunyc 发表于 2025-1-24 16:39
用的苹果好像没你这软件现在还无法链接国内

没有苹果手机研究不了
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

发表于 6 天前 来自手机 | 显示全部楼层
FearTight 发表于 2025-1-25 08:07
没有苹果手机研究不了

小火箭的百度直连Lua脚本改一改有可能可以吗
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

发表于 6 天前 | 显示全部楼层
牛呀
[发帖际遇]: jaycola 在水贴,被扣了 3 点数. 幸运榜 / 衰神榜
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

发表于 6 天前 来自手机 | 显示全部楼层
mask 发表于 2025-1-25 08:54
小火箭的百度直连Lua脚本改一改有可能可以吗


发我一下代码或者给我看配置截图
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

发表于 5 天前 | 显示全部楼层
FearTight 发表于 2025-1-25 11:12
发我一下代码或者给我看配置截图

-- file: lua/backend-baidu.lua

local http = require 'http'
local backend = require 'backend'

local char = string.char
local byte = string.byte
local find = string.find
local sub = string.sub

local ADDRESS = backend.ADDRESS
local PROXY = backend.PROXY
local DIRECT_WRITE = backend.SUPPORT.DIRECT_WRITE

local SUCCESS = backend.RESULT.SUCCESS
local HANDSHAKE = backend.RESULT.HANDSHAKE
local DIRECT = backend.RESULT.DIRECT

local ctx_uuid = backend.get_uuid
local ctx_proxy_type = backend.get_proxy_type
local ctx_address_type = backend.get_address_type
local ctx_address_host = backend.get_address_host
local ctx_address_bytes = backend.get_address_bytes
local ctx_address_port = backend.get_address_port
local ctx_write = backend.write
local ctx_free = backend.free
local ctx_debug = backend.debug

local flags = {}
local kHttpHeaderSent = 1
local kHttpHeaderRecived = 2

function wa_lua_on_flags_cb(ctx)
    return DIRECT_WRITE
end

function wa_lua_on_handshake_cb(ctx)
    local uuid = ctx_uuid(ctx)

    if flags[uuid] == kHttpHeaderRecived then
        return true
    end

    if flags[uuid] ~= kHttpHeaderSent then
        local host = ctx_address_host(ctx)
        local port = ctx_address_port(ctx)
        local res = 'CONNECT ' .. host .. ':' .. port .. 'HTTP/1.1\r\n' ..
                    'Host: 180.101.50.208:443\r\n' ..
                    'Proxy-Connection: Keep-Alive\r\n'
        ctx_write(ctx, res)
        flags[uuid] = kHttpHeaderSent
    end

    return false
end

function wa_lua_on_read_cb(ctx, buf)
    ctx_debug('wa_lua_on_read_cb')
    local uuid = ctx_uuid(ctx)
    if flags[uuid] == kHttpHeaderSent then
        flags[uuid] = kHttpHeaderRecived
        return HANDSHAKE, nil
    end
    return DIRECT, buf
end

function wa_lua_on_write_cb(ctx, buf)
    ctx_debug('wa_lua_on_write_cb')
    return DIRECT, buf
end

function wa_lua_on_close_cb(ctx)
    ctx_debug('wa_lua_on_close_cb')
    local uuid = ctx_uuid(ctx)
    flags[uuid] = nil
    ctx_free(ctx)
    return SUCCESS
end
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

发表于 5 天前 | 显示全部楼层
结果怎么样
[发帖际遇]: 850757554 捡了钱没交公 金币 降了 2 . 幸运榜 / 衰神榜
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

发表于 4 天前 来自手机 | 显示全部楼层
在'Host: 180.101.50.208:443\r\n'下一行加入一句
'With-At: sdeweb.hkcsl.com' 试试
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

Powered by Nyarime. Licensed

GMT+8, 2025-1-31 22:49 , Processed in 0.047648 second(s), 33 queries , Gzip On, Redis On
发帖际遇 ·手机版 ·小黑屋 ·RSS ·奶昔网 | 沪ICP备13020230号-1 |  沪公网安备 31010702007642号

登录切换风格
快速回复 返回顶部 返回列表