1

プラットフォーム:(LuaとLuaSocketが移植される場所)TCP/IPスタックを備えたサードパーティのRTOSを実行するARM7開発ボードを使用する組み込みシステム。

何が機能するか:

  • 「io」呼び出し、印刷、アサートなどのLua標準ライブラリの使用
  • udp = assert(socket.udp)メソッド、assert(udp:send(something))を使用してUDPパケットを送信する

問題:サンプルのSMTP LUAスクリプトを実行する場合:

local smtp = require("socket.smtp")
from = "myEmail"
rcpt = {"<someOne's Email>"}
mesgt = { heasers = {someHeader}, body = "Hello World" } 
r, e = smtp.send {
    from = from,
    rcpt = rcpt, 
    source = smtp.message(mesgt),
    server = "someServer",
    port = 25,
}

-- an error returns after execution: 
-- lua\socket\smtp.lua:115: attempt to call field 'try' (a nil value)

-- Corresponding code in smtp.lua around line 115:

function open(server, port, create)
    local tp = socket.try(tp.connect(server or SERVER, port or PORT,
        TIMEOUT, create))
    local s = base.setmetatable({tp = tp}, metat)
    -- make sure tp is closed if we get an exception
    s.try = socket.newtry(function()
        s:close()
    end)
    return s
end

// Where try = newtry() in socket.lua and the corresponding C code is the same
// from the one provided with the library for UNIX:
static int global_newtry(lua_State *L) {
    lua_settop(L, 1);
    if (lua_isnil(L, 1)) lua_pushcfunction(L, do_nothing);
    lua_pushcclosure(L, finalize, 1);
    return 1;
}
4

1 に答える 1

2

エラーには「tryisnil」と表示されているので、C libが正しく、または完全にLuaにリンクされていないことが推測されます。これは、インストールの失敗、libの欠落、またはそのようなものの結果である可能性があります。

于 2012-04-11T17:59:04.607 に答える