summaryrefslogblamecommitdiff
path: root/src/emap/data/session.c
blob: 40ad69660b0e59f118e16e53d4901cfe8142f0a3 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                         
                                            
 

                            



                   
                        
                          



                          
 

                                   


                                      

                    
                                                                    


                                
                                                        



                
                                               






                               






                                       
                       
                    
                                 
                     
                    
                              

                
// 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;
}