summaryrefslogtreecommitdiff
path: root/src/emap/data/session.c
blob: 40ad69660b0e59f118e16e53d4901cfe8142f0a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 - 2015 Evol developers

#include "common/hercules.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "common/HPMi.h"
#include "common/memmgr.h"
#include "common/mmo.h"
#include "common/socket.h"
#include "common/strlib.h"
#include "map/pc.h"

#include "emap/data/session.h"
#include "emap/struct/sessionext.h"

struct SessionExt *session_get(int fd)
{
    if (fd < 0)
        return NULL;
    struct SessionExt *data = getFromSession(sockt->session[fd], 0);
    if (!data)
    {
        data = session_create();
        addToSession(sockt->session[fd], data, 0, true);
    }
    return data;
}

struct SessionExt *session_get_bysd(TBL_PC *sd)
{
    if (!sd)
        return NULL;

    return session_get(sd->fd);
}

struct SessionExt *session_create(void)
{
    struct SessionExt *data = NULL;
    CREATE(data, struct SessionExt, 1);
    if (!data)
        return NULL;
    data->clientVersion = 0;
    data->language = 0;
    data->state = 0;
    data->onlinelistlasttime = 0;
    data->teamId = 0;
    data->mount = 0;
    data->jump_iterate_id = 0;
    return data;
}